Skip to content

Commit

Permalink
update lint infra
Browse files Browse the repository at this point in the history
  • Loading branch information
runspired committed Sep 28, 2024
1 parent 536192b commit 308fa59
Show file tree
Hide file tree
Showing 3 changed files with 236 additions and 10 deletions.
9 changes: 8 additions & 1 deletion packages/eslint-plugin-ember-data/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,19 @@
"volta": {
"extends": "../../package.json"
},
"dependencies": {
"requireindex": "^1.2.0",
"eslint": "^9.11.1",
"mocha": "^10.7.3"
},
"devDependencies": {
"@warp-drive/internal-config": "workspace:5.4.0-alpha.109"
},
"files": [
"src",
"CHANGELOG.md"
],
"scripts": {}
"scripts": {
"test": "mocha tests"
}
}
6 changes: 5 additions & 1 deletion packages/eslint-plugin-ember-data/src/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
'use strict';

const requireIndex = require('requireindex');

module.exports = {
rules: {},
rules: requireIndex(`${__dirname}/rules`),
};
Loading

0 comments on commit 308fa59

Please sign in to comment.