fix: eslint issue
This commit is contained in:
parent
72ec736e3e
commit
5d93330adc
|
|
@ -26,7 +26,8 @@
|
|||
"files": [ "src/**/*.spec.ts" ],
|
||||
"rules": {
|
||||
"@typescript-eslint/no-non-null-assertion": "off",
|
||||
"@typescript-eslint/no-unnecessary-type-assertion": "off"
|
||||
"@typescript-eslint/no-unnecessary-type-assertion": "off",
|
||||
"@typescript-eslint/no-explicit-any": "off"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build",
|
||||
"lint:script": "eslint \"{src,cypress}/**/*.{js,ts,vue}\"",
|
||||
"lint:script": "eslint \"{src/**/*.{ts,vue},cypress/**/*.js}\"",
|
||||
"lint:vti": "vti diagnostics",
|
||||
"lint": "concurrently 'yarn tsc' 'yarn lint:script' 'yarn lint:vti'",
|
||||
"test:unit": "jest --coverage",
|
||||
|
|
|
|||
Loading…
Reference in New Issue