Reverts appsmithorg/appsmith#23991 Reverting because lint check is failing in our test suite. Will raise another PR along with lint check passing
18 lines
515 B
JSON
18 lines
515 B
JSON
{
|
|
"extends": ["../.eslintrc.base.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",
|
|
"cypress/unsafe-to-chain-command": "off",
|
|
"@typescript-eslint/adjacent-overload-signatures": "off"
|
|
}
|
|
}
|