Skip to content
moduleeslint-plugin-warp-drive

Lint rules for helping to ensure best practices and hygiene when using WarpDrive.

πŸ’‘ Backwards Compatibility

For security and backwards compatibility, this Package is also available as eslint-plugin-ember-data

Rules ​

  • πŸ› οΈ has Autofix
  • 〽️ has Partial Autofix
  • βœ… Recommended
  • πŸ’œ TypeScript Aware

🏷️ Categories

  • 🐞 Helps prevent buggy code
  • ⚑️ Helps prevent performance issues
  • πŸ† Enforces a best practice
RuleDescription🏷️✨
no-create-record-rerenderHelps avoid patterns that often lead to excess or broken rendersπŸžβš‘οΈβœ…
no-invalid-relationshipsEnsures the basic part of relationship configuration is setup appropriatelyπŸ†βœ…
no-legacy-request-patternsRestricts usage of deprecated or discouraged request patternsπŸ†βœ…
no-external-request-patternsRestricts usage of discouraged non-warp-drive request patternsπŸ†βœ…
no-invalid-resource-typesEnsures resource types follow a conventional pattern when used in common APIsπŸ†βœ…πŸ› οΈ
no-invalid-resource-idsEnsures resource ids are strings when used in common APIsπŸ†βœ…πŸ› οΈ
no-legacy-importsEnsures imports use paths specified by the Package Unification RFCπŸ†βœ…πŸ› οΈ

Usage ​

Recommended Rules are available as a flat config for easy consumption:

ts
// eslint.config.js (flat config)
const WarpDriveRecommended = require('eslint-plugin-warp-drive/recommended');

module.exports = [
  ...WarpDriveRecommended,
];

Variables ​

Released under the MIT License.