Linter: Don't warn about build files not located in the src directory

This commit is contained in:
networkException 2022-01-06 01:57:22 +01:00
parent 90642ee9c8
commit 520febd542
Signed by: networkException
GPG key ID: E3877443AE684391

View file

@ -59,7 +59,7 @@
"@typescript-eslint/semi": "warn",
"import/first": "warn",
"import/no-duplicates": "warn",
"import/no-unresolved": "warn",
"import/no-unresolved": "off", // The src directory is not used for compiled files
"import/no-self-import": "warn",
"import/extensions": [ "warn", "always" ],
"import/order": [ "warn", { "newlines-between": "ignore", "alphabetize": { "order": "asc", "caseInsensitive": true } } ],