mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.6 KiB
71 lines
1.6 KiB
2 years ago
|
{
|
||
|
"root": true,
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"parserOptions": {
|
||
|
"project": "./tsconfig.json"
|
||
|
},
|
||
|
"env": {
|
||
|
"es6": true
|
||
|
},
|
||
|
"ignorePatterns": [
|
||
|
"node_modules",
|
||
|
"build",
|
||
|
"coverage",
|
||
2 years ago
|
"playwright-report",
|
||
|
"output",
|
||
2 years ago
|
"dist",
|
||
2 years ago
|
"nc",
|
||
|
"tsconfig.json",
|
||
|
".eslintrc.json"
|
||
2 years ago
|
],
|
||
|
"plugins": [
|
||
|
"import",
|
||
|
"eslint-comments",
|
||
|
"functional"
|
||
|
],
|
||
|
"extends": [
|
||
|
"eslint:recommended",
|
||
|
"plugin:eslint-comments/recommended",
|
||
|
"plugin:@typescript-eslint/recommended",
|
||
|
"plugin:import/typescript",
|
||
2 years ago
|
"plugin:prettier/recommended",
|
||
|
"plugin:json/recommended"
|
||
2 years ago
|
],
|
||
|
"globals": {
|
||
|
"BigInt": true,
|
||
|
"console": true,
|
||
2 years ago
|
"WebAssembly": true,
|
||
|
"window": true,
|
||
|
"document": true,
|
||
|
"localStorage": true
|
||
2 years ago
|
},
|
||
|
"rules": {
|
||
2 years ago
|
"@typescript-eslint/no-floating-promises": ["error"],
|
||
2 years ago
|
"@typescript-eslint/explicit-module-boundary-types": "off",
|
||
|
"eslint-comments/disable-enable-pair": [
|
||
|
"error",
|
||
|
{
|
||
|
"allowWholeFile": true
|
||
|
}
|
||
|
],
|
||
|
"eslint-comments/no-unused-disable": "error",
|
||
|
"sort-imports": [
|
||
|
"error",
|
||
|
{
|
||
|
"ignoreDeclarationSort": true,
|
||
|
"ignoreCase": true
|
||
|
}
|
||
|
],
|
||
|
"@typescript-eslint/no-this-alias": "off",
|
||
|
|
||
|
"@typescript-eslint/ban-ts-comment": "off",
|
||
|
"@typescript-eslint/no-explicit-any": "off",
|
||
|
"@typescript-eslint/no-unused-vars": "off",
|
||
|
"@typescript-eslint/no-var-requires": "off",
|
||
|
"no-useless-catch": "off",
|
||
|
"no-empty": "off",
|
||
|
"@typescript-eslint/no-empty-function": "off",
|
||
|
"import/order": "off"
|
||
|
}
|
||
|
}
|