This repository was archived by the owner on Jan 25, 2022. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,17 +2,12 @@ module.exports = {
22 root : true ,
33 parserOptions : {
44 ecmaVersion : 2018 ,
5- sourceType : 'module'
5+ sourceType : 'module' ,
66 } ,
7- plugins : [
8- 'ember'
9- ] ,
10- extends : [
11- 'eslint:recommended' ,
12- 'plugin:ember/recommended'
13- ] ,
7+ plugins : [ 'prettier' , 'ember' ] ,
8+ extends : [ 'eslint:recommended' , 'plugin:ember/recommended' , 'prettier' ] ,
149 env : {
15- browser : true
10+ browser : true ,
1611 } ,
1712 rules : {
1813 'comma-dangle' : [
@@ -38,26 +33,30 @@ module.exports = {
3833 'testem.js' ,
3934 'blueprints/*/index.js' ,
4035 'config/**/*.js' ,
41- 'tests/dummy/config/**/*.js'
36+ 'tests/dummy/config/**/*.js' ,
4237 ] ,
4338 excludedFiles : [
4439 'addon/**' ,
4540 'addon-test-support/**' ,
4641 'app/**' ,
47- 'tests/dummy/app/**'
42+ 'tests/dummy/app/**' ,
4843 ] ,
4944 parserOptions : {
5045 sourceType : 'script' ,
51- ecmaVersion : 2015
46+ ecmaVersion : 2015 ,
5247 } ,
5348 env : {
5449 browser : false ,
55- node : true
50+ node : true ,
5651 } ,
5752 plugins : [ 'node' ] ,
58- rules : Object . assign ( { } , require ( 'eslint-plugin-node' ) . configs . recommended . rules , {
59- // add your custom rules and overrides for node files here
60- } )
61- }
62- ]
53+ rules : Object . assign (
54+ { } ,
55+ require ( 'eslint-plugin-node' ) . configs . recommended . rules ,
56+ {
57+ // add your custom rules and overrides for node files here
58+ }
59+ ) ,
60+ } ,
61+ ] ,
6362} ;
You can’t perform that action at this time.
0 commit comments