1
1
mirror of https://github.com/theoludwig/html-w3c-validator.git synced 2024-11-09 22:08:12 +01:00
html-w3c-validator/.eslintrc.json

19 lines
391 B
JSON

{
"root": true,
"extends": ["conventions"],
"plugins": ["promise", "unicorn"],
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"parserOptions": {
"projectService": true
},
"rules": {
"@typescript-eslint/no-unnecessary-condition": "off"
}
}
]
}