mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
31 lines
770 B
JSON
31 lines
770 B
JSON
|
{
|
||
|
"extends": ["../../.eslintrc.json"],
|
||
|
"ignorePatterns": ["!**/*"],
|
||
|
"overrides": [
|
||
|
{
|
||
|
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
|
||
|
"rules": {}
|
||
|
},
|
||
|
{
|
||
|
"files": ["*.ts", "*.tsx"],
|
||
|
"rules": {
|
||
|
"prefer-const": "off",
|
||
|
"@typescript-eslint/no-unused-vars": "off",
|
||
|
"@typescript-eslint/no-inferrable-types": "off",
|
||
|
"no-useless-escape": "off",
|
||
|
"no-case-declarations": "off",
|
||
|
"no-dupe-else-if": "off",
|
||
|
"@typescript-eslint/ban-types": "off",
|
||
|
"@typescript-eslint/no-var-requires": "off",
|
||
|
"@typescript-eslint/no-var-requires": "off",
|
||
|
"strict": "off",
|
||
|
"import/first": "off"
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"files": ["*.js", "*.jsx"],
|
||
|
"rules": {}
|
||
|
}
|
||
|
]
|
||
|
}
|