b3014bb98a
Co-authored-by: Edd <edd@vega.xyz>
20 lines
416 B
JSON
20 lines
416 B
JSON
{
|
|
"extends": ["plugin:cypress/recommended", "../../.eslintrc.json"],
|
|
"ignorePatterns": ["!**/*"],
|
|
"overrides": [
|
|
{
|
|
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
|
|
"rules": {
|
|
"cypress/unsafe-to-chain-command": 0
|
|
}
|
|
},
|
|
{
|
|
"files": ["src/plugins/index.js"],
|
|
"rules": {
|
|
"@typescript-eslint/no-var-requires": "off",
|
|
"no-undef": "off"
|
|
}
|
|
}
|
|
]
|
|
}
|