## Description 1. Update husky, prettier and lint-staged then move them to devDependencies 2. Configure husky and lint-staged 3. Impriove rules for the lint commands 4. Fix errors of eslint and prettier. 5. Remove redundant files ## Type of change - Chore (housekeeping or task changes that don't impact user perception) Co-authored-by: Valera Melnikov <melnikov.vv@greendatasoft.ru>
16 lines
402 B
JSON
16 lines
402 B
JSON
{
|
|
"extends": ["../.eslintrc.json"],
|
|
"env": {
|
|
"cypress/globals": true
|
|
},
|
|
"rules": {
|
|
"@typescript-eslint/no-array-constructor": "off",
|
|
"@typescript-eslint/no-namespace": "off",
|
|
"@typescript-eslint/no-unused-vars": "off",
|
|
"cypress/no-unnecessary-waiting": "off",
|
|
"no-console": "off",
|
|
"prefer-const": "off",
|
|
"@typescript-eslint/no-non-null-assertion": "error"
|
|
}
|
|
}
|