1
1
mirror of https://github.com/theoludwig/html-w3c-validator.git synced 2024-07-20 07:30:11 +02:00
html-w3c-validator/.eslintrc.json

20 lines
429 B
JSON
Raw Permalink Normal View History

2022-01-06 19:52:25 +01:00
{
2024-05-23 21:21:34 +02:00
"root": true,
"extends": ["conventions"],
"plugins": ["import", "promise", "unicorn"],
2022-01-06 19:52:25 +01:00
"rules": {
"import/extensions": ["error", "always"],
2024-05-23 21:21:34 +02:00
"unicorn/prevent-abbreviations": "error"
},
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"parserOptions": {
"project": "./tsconfig.json"
}
}
]
2022-01-06 19:52:25 +01:00
}