mirror of https://github.com/ghostfolio/ghostfolio
Browse Source
* Set up recommendedTypeChecked rule in eslint configuration * Update changelog --------- Signed-off-by: Dominik Willner <th33xitus@gmail.com>pull/3872/head
committed by
GitHub
5 changed files with 54 additions and 8 deletions
@ -0,0 +1,20 @@ |
|||
{ |
|||
"extends": ["plugin:cypress/recommended", "../../.eslintrc.json"], |
|||
"ignorePatterns": ["!**/*"], |
|||
"overrides": [ |
|||
{ |
|||
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"], |
|||
"parserOptions": { |
|||
"project": ["apps/client-e2e/tsconfig.*?.json"] |
|||
}, |
|||
"rules": {} |
|||
}, |
|||
{ |
|||
"files": ["src/plugins/index.js"], |
|||
"rules": { |
|||
"@typescript-eslint/no-var-requires": "off", |
|||
"no-undef": "off" |
|||
} |
|||
} |
|||
] |
|||
} |
Loading…
Reference in new issue