File tree 5 files changed +6
-6
lines changed
rules/padding-line-between-statements
5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 20
20
"scripts" : {
21
21
"test" : " vitest run" ,
22
22
"lint" : " concurrently \" npm:lint:*(!fix)\" --names \" lint:\" " ,
23
- "lint:js" : " eslint ." ,
23
+ "lint:js" : " eslint . --max-warnings=0 " ,
24
24
"lint:package" : " pnpm publint" ,
25
25
"lint:fix" : " concurrently \" npm:lint:*:fix\" --names \" fix:\" " ,
26
- "lint:js:fix" : " eslint . --fix"
26
+ "lint:js:fix" : " eslint . --fix --max-warnings=0 "
27
27
},
28
28
"devDependencies" : {
29
29
"@babel/core" : " ^7.23.6" ,
Original file line number Diff line number Diff line change 4
4
"scripts" : {
5
5
"test:notes" : " This isn't just 'eslint .' because we aren't in a type=module package" ,
6
6
"test" : " pnpm eslint:with-config ." ,
7
- "eslint:with-config" : " ESLINT_USE_FLAT_CONFIG=true eslint --config ./eslint.config.mjs" ,
7
+ "eslint:with-config" : " ESLINT_USE_FLAT_CONFIG=true eslint --config ./eslint.config.mjs --max-warnings=0 " ,
8
8
"eslint:debug-file" : " pnpm eslint:with-config --print-config"
9
9
},
10
10
"devDependencies" : {
Original file line number Diff line number Diff line change 2
2
"name" : " @test-project/gjs" ,
3
3
"private" : true ,
4
4
"scripts" : {
5
- "test" : " eslint ."
5
+ "test" : " eslint . --max-warnings=0 "
6
6
},
7
7
"devDependencies" : {
8
8
"@typescript-eslint/eslint-plugin" : " ^6.21.0" ,
Original file line number Diff line number Diff line change 2
2
"name" : " @test-project/gts" ,
3
3
"private" : true ,
4
4
"scripts" : {
5
- "test" : " eslint ." ,
5
+ "test" : " eslint . --max-warnings=0 " ,
6
6
"types" : " tsc --noEmit"
7
7
},
8
8
"devDependencies" : {
Original file line number Diff line number Diff line change 2
2
"name" : " @test-project/rules-padding-line-between-statements" ,
3
3
"private" : true ,
4
4
"scripts" : {
5
- "test" : " eslint ."
5
+ "test" : " eslint . --max-warnings=0 "
6
6
},
7
7
"devDependencies" : {
8
8
"@typescript-eslint/eslint-plugin" : " ^6.21.0" ,
You can’t perform that action at this time.
0 commit comments