Skip to content

Commit c3450bc

Browse files
authoredJun 13, 2021
Merge pull request #54 from btecu/octane
Octane Updates
2 parents 2975a0e + ac1a183 commit c3450bc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+5277
-2771
lines changed
 

‎.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# misc
1414
/coverage/
1515
!.*
16+
.eslintcache
1617

1718
# ember-try
1819
/.node_modules.ember-try/

‎.eslintrc.js

+14-19
Original file line numberDiff line numberDiff line change
@@ -7,52 +7,47 @@ module.exports = {
77
ecmaVersion: 2018,
88
sourceType: 'module',
99
ecmaFeatures: {
10-
legacyDecorators: true
11-
}
10+
legacyDecorators: true,
11+
},
1212
},
13-
plugins: [
14-
'ember'
15-
],
13+
plugins: ['ember'],
1614
extends: [
1715
'eslint:recommended',
18-
'plugin:ember/recommended'
16+
'plugin:ember/recommended',
1917
],
2018
env: {
21-
browser: true
22-
},
23-
rules: {
24-
'ember/no-jquery': 'error'
19+
browser: true,
2520
},
21+
rules: {},
2622
overrides: [
2723
// node files
2824
{
2925
files: [
3026
'.eslintrc.js',
27+
'.prettierrc.js',
3128
'.template-lintrc.js',
3229
'ember-cli-build.js',
3330
'index.js',
3431
'testem.js',
3532
'blueprints/*/index.js',
3633
'config/**/*.js',
37-
'tests/dummy/config/**/*.js'
34+
'tests/dummy/config/**/*.js',
3835
],
3936
excludedFiles: [
4037
'addon/**',
4138
'addon-test-support/**',
4239
'app/**',
43-
'tests/dummy/app/**'
40+
'tests/dummy/app/**',
4441
],
4542
parserOptions: {
46-
sourceType: 'script'
43+
sourceType: 'script',
4744
},
4845
env: {
4946
browser: false,
50-
node: true
47+
node: true,
5148
},
5249
plugins: ['node'],
53-
rules: Object.assign({}, require('eslint-plugin-node').configs.recommended.rules, {
54-
// add your custom rules and overrides for node files here
55-
})
56-
}
57-
]
50+
extends: ['plugin:node/recommended'],
51+
},
52+
],
5853
};

0 commit comments

Comments
 (0)
Please sign in to comment.