Skip to content

Commit 9b4e0e6

Browse files
chore: add --max-warnings 0 to additional eslint and stylelint runners
Co-Authored-By: Connor Prussin <[email protected]>
1 parent 55cb71b commit 9b4e0e6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

apps/insights/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"start:dev": "next dev --port 3003",
1616
"start:prod": "next start --port 3003",
1717
"test:format": "prettier --check .",
18-
"test:lint:eslint": "eslint .",
19-
"test:lint:stylelint": "stylelint 'src/**/*.scss'",
18+
"test:lint:eslint": "eslint . --max-warnings 0",
19+
"test:lint:stylelint": "stylelint 'src/**/*.scss' --max-warnings 0",
2020
"test:types": "tsc"
2121
},
2222
"dependencies": {

packages/component-library/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
"fix:lint:stylelint": "stylelint --fix 'src/**/*.scss'",
1818
"start:dev": "storybook dev --port 4000 --no-open",
1919
"test:format": "prettier --check .",
20-
"test:lint:eslint": "eslint .",
21-
"test:lint:stylelint": "stylelint 'src/**/*.scss'",
20+
"test:lint:eslint": "eslint . --max-warnings 0",
21+
"test:lint:stylelint": "stylelint 'src/**/*.scss' --max-warnings 0",
2222
"test:types": "tsc"
2323
},
2424
"peerDependencies": {

0 commit comments

Comments
 (0)