mirror of
https://github.com/theoludwig/html-w3c-validator.git
synced 2024-10-29 22:17:28 +01:00
20 lines
429 B
JSON
20 lines
429 B
JSON
{
|
|
"root": true,
|
|
"extends": ["conventions"],
|
|
"plugins": ["import", "promise", "unicorn"],
|
|
"rules": {
|
|
"import/extensions": ["error", "always"],
|
|
"unicorn/prevent-abbreviations": "error"
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["*.ts", "*.tsx"],
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["@typescript-eslint"],
|
|
"parserOptions": {
|
|
"project": "./tsconfig.json"
|
|
}
|
|
}
|
|
]
|
|
}
|