refactor(web): eslint glob pattern (#2309)
The current eslint glob pattern is not Windows friendly, this change works for both Linux and Windows.pull/2314/head
parent
af9274a9c6
commit
0c5c85cbe4
|
@ -24,7 +24,7 @@
|
|||
"scripts": {
|
||||
"start": "craco start",
|
||||
"build": "craco build",
|
||||
"lint": "eslint '*/**/*.{js,ts,tsx}' --fix",
|
||||
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
|
||||
"coverage": "COVERAGE=true craco build",
|
||||
"test": "craco test --coverage --no-cache",
|
||||
"report": "nyc report -r clover -r json -r lcov -r text",
|
||||
|
|
Loading…
Reference in New Issue