ibiz-modeling-studio/.eslintrc.json

46 lines
1017 B
JSON

{
"root": true,
"parser": "@typescript-eslint/parser",
"extends": [
"prettier",
"plugin:@typescript-eslint/recommended"
],
"env": {
"browser": false,
"node": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/naming-convention": "warn",
"@typescript-eslint/semi": "warn",
"curly": "warn",
"eqeqeq": "warn",
"no-throw-literal": "warn",
"semi": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unused-vars": [
0,
{
"varsIgnorePattern": "_"
}
],
"prefer-rest-params": "off",
"no-var": "off"
},
"ignorePatterns": [
"out",
"dist",
"**/*.d.ts"
]
}