1
0
Fork 0

More linting stuff

refactor/models
Bsian 2019-10-15 23:36:44 +01:00
parent d6bfa0e1fa
commit 00301c2de9
No known key found for this signature in database
GPG Key ID: 097FB9A291026091
2 changed files with 5 additions and 6 deletions

View File

@ -32,6 +32,9 @@
"import/no-dynamic-require": "off", "import/no-dynamic-require": "off",
"global-require": "off", "global-require": "off",
"class-methods-use-this":"off", "class-methods-use-this":"off",
"no-restricted-syntax": "off" "no-restricted-syntax": "off",
"camelcase": "off",
"indent": "warn",
"object-curly-newline": "off"
} }
} }

View File

@ -1,8 +1,4 @@
{ {
"eslint.enable": true, "eslint.enable": true,
"eslint.validate": [ "eslint.validate": [ { "language": "typescript", "autoFix": true } ]
"javascript",
"javascriptreact",
"typescript"
]
} }