Skip to content

Commit

Permalink
Replace ember-cli-eslint with eslint
Browse files Browse the repository at this point in the history
- Remove ember-cli-eslint dependency and replace it with direct
dependency on eslint and required plugins.

NOTE: disabling no-new-mixins for since prefetch currently relies on
a mixin.
  • Loading branch information
Jackson Dean committed Sep 24, 2019
1 parent f6fbc00 commit 8bf9ab8
Show file tree
Hide file tree
Showing 3 changed files with 306 additions and 1,270 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ module.exports = {
embertest: true,
},
rules: {
'ember/no-new-mixins': 'off',
},
overrides: [
// node files
Expand Down
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
"broccoli-asset-rev": "^2.7.0",
"ember-cli": "~3.8.0",
"ember-cli-dependency-checker": "^3.0.0",
"ember-cli-eslint": "^4.2.3",
"ember-cli-htmlbars": "^3.0.0",
"ember-cli-htmlbars-inline-precompile": "^1.0.3",
"ember-cli-inject-live-reload": "^1.8.2",
Expand All @@ -36,9 +35,13 @@
"ember-source": "~3.7.0",
"ember-source-channel-url": "^1.1.0",
"ember-try": "^1.0.0",
"eslint-plugin-ember": "^5.2.0",
"eslint-plugin-node": "^7.0.1",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-ember": "^7.1.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"loader.js": "^4.7.0",
"prettier": "^1.18.2",
"qunit-dom": "^0.8.0"
},
"keywords": [
Expand Down
Loading

0 comments on commit 8bf9ab8

Please sign in to comment.