File tree 3 files changed +13
-9
lines changed
3 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ module.exports = {
39
39
'addon/**' ,
40
40
'addon-test-support/**' ,
41
41
'app/**' ,
42
- 'tests/dummy/app/**'
42
+ 'tests/dummy/app/**' ,
43
43
] ,
44
44
parserOptions : {
45
45
sourceType : 'script'
@@ -52,12 +52,6 @@ module.exports = {
52
52
rules : Object . assign ( { } , require ( 'eslint-plugin-node' ) . configs . recommended . rules , {
53
53
// add your custom rules and overrides for node files here
54
54
} )
55
- } , { // cypress
56
- files : [ 'cypress/integration/**/*.js' ] ,
57
- env : {
58
- 'cypress/globals' : true ,
59
- } ,
60
- extends : [ 'plugin:cypress/recommended' ]
61
55
}
62
56
]
63
57
} ;
Original file line number Diff line number Diff line change 36
36
- stage : " Tests"
37
37
name : " Tests"
38
38
script :
39
- - npm run lint:hbs
40
- - npm run lint:js
39
+ # - npm run lint:hbs
40
+ # - npm run lint:js
41
41
- npm test
42
42
43
43
- stage : " Additional Tests"
Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ parserOptions : {
3
+ ecmaVersion : 2018 ,
4
+ sourceType : 'module' ,
5
+ } ,
6
+ env : {
7
+ 'cypress/globals' : true ,
8
+ } ,
9
+ extends : [ 'plugin:cypress/recommended' ]
10
+ } ;
You can’t perform that action at this time.
0 commit comments