mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-10 04:22:27 +10:00
30 lines
817 B
JSON
30 lines
817 B
JSON
{
|
|
"ignorePatterns": ["/app"],
|
|
"parser": "@typescript-eslint/parser",
|
|
"extends": ["plugin:@typescript-eslint/recommended"],
|
|
"plugins": ["@typescript-eslint/eslint-plugin", "simple-import-sort"],
|
|
"rules": {
|
|
// ESLint
|
|
"no-unused-vars": "off",
|
|
|
|
// Simple Import Sort
|
|
"simple-import-sort/imports": "error",
|
|
"simple-import-sort/exports": "error",
|
|
|
|
// TypeScript ESLint
|
|
"@typescript-eslint/no-unused-vars": "off",
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/interface-name-prefix": "off",
|
|
"@typescript-eslint/explicit-function-return-type": "off",
|
|
"@typescript-eslint/explicit-module-boundary-types": "off"
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["*.js"],
|
|
"rules": {
|
|
"@typescript-eslint/no-var-requires": "off"
|
|
}
|
|
}
|
|
]
|
|
}
|