File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 5
5
command :
6
6
- npm config set "//registry.npmjs.org/:_authToken" $${NPM_TOKEN}
7
7
- yarn install --frozen-lockfile
8
- - yarn lint
8
+ - yarn lint || true
9
9
- yarn test
10
10
- yarn test:ci
11
11
plugins :
Original file line number Diff line number Diff line change 93
93
command : yarn install --frozen-lockfile
94
94
- run :
95
95
name : Run Linter (not enforcing for now)
96
- command : yarn lint
96
+ command : yarn lint || true
97
97
- run :
98
98
name : Run Tests
99
99
command : yarn test
Original file line number Diff line number Diff line change 17
17
"no-shadow": "warn",
18
18
"no-plusplus": "off",
19
19
"no-template-curly-in-string": "warn",
20
- "no-useless-escape": "warn"
20
+ "no-useless-escape": "warn",
21
+ "no-return-assign": "warn",
22
+ "no-unused-vars": "warn",
23
+ "no-param-reassign": "warn"
21
24
},
22
25
"overrides": [
23
26
{
You can’t perform that action at this time.
0 commit comments