mirror of https://github.com/ghostfolio/ghostfolio
20 lines
447 B
20 lines
447 B
{
|
|
"extends": ["plugin:cypress/recommended", "../../.eslintrc.json"],
|
|
"ignorePatterns": ["!**/*"],
|
|
"overrides": [
|
|
{
|
|
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
|
|
"parserOptions": {
|
|
"project": ["apps/ui-e2e/tsconfig.json"]
|
|
},
|
|
"rules": {}
|
|
},
|
|
{
|
|
"files": ["src/plugins/index.js"],
|
|
"rules": {
|
|
"@typescript-eslint/no-var-requires": "off",
|
|
"no-undef": "off"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
|