Skip to content

Commit 4b6eccd

Browse files
authored
feat: fix CI error by removing --fix flag from lint script (#297)
1 parent 32fd7ae commit 4b6eccd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
},
1212
"scripts": {
1313
"format": "prettier --write 'src/**/*.ts'",
14-
"lint": "yarn eslint . --ext .js,.jsx,.ts,.tsx --fix",
14+
"lint": "yarn eslint . --ext .js,.jsx,.ts,.tsx",
15+
"lint:fix": "yarn eslint . --ext .js,.jsx,.ts,.tsx --fix",
1516
"build": "rimraf lib && tsc",
1617
"test": "jest --config jestconfig.json --unhandled-rejections=strict",
1718
"prod": "webpack --config webpack.prod.js",

0 commit comments

Comments
 (0)