1
1
mirror of https://github.com/theoludwig/html-w3c-validator.git synced 2024-07-12 14:10:11 +02:00
html-w3c-validator/.eslintrc.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"
}
}
]
}