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

17 lines
373 B
JSON
Raw Normal View History

2022-01-06 19:52:25 +01:00
{
2022-02-19 16:55:36 +01:00
"extends": ["conventions", "prettier"],
"plugins": ["prettier", "import", "unicorn"],
2022-01-06 19:52:25 +01:00
"parserOptions": {
"project": "./tsconfig.json"
},
"env": {
"node": true
2022-01-06 19:52:25 +01:00
},
"rules": {
"prettier/prettier": "error",
"import/extensions": ["error", "always"],
"unicorn/prevent-abbreviations": "error",
"unicorn/prefer-node-protocol": "error"
2022-01-06 19:52:25 +01:00
}
}