Files
Chromacase/front/.eslintrc.json
2023-06-17 07:01:23 +01:00

25 lines
627 B
JSON

{
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": { "project": ["./tsconfig.json"] },
"plugins": ["react", "@typescript-eslint"],
"ignorePatterns": [
"node_modules/",
"webpack.config.js",
"babel.config.js",
"*.test.*",
"app.config.ts"
],
"rules": {
"react/react-in-jsx-scope": "off",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-empty-function": "off"
}
}