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
Raw Normal View History

2022-01-06 19:52:25 +01:00
{
2024-05-23 21:21:34 +02:00
"root": true,
"extends": ["conventions"],
"plugins": ["promise", "unicorn"],
2024-05-23 21:21:34 +02:00
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"parserOptions": {
"projectService": true
},
"rules": {
"@typescript-eslint/no-unnecessary-condition": "off"
2024-05-23 21:21:34 +02:00
}
}
]
2022-01-06 19:52:25 +01:00
}