mirror of
https://github.com/theoludwig/html-w3c-validator.git
synced 2024-10-29 22:17:28 +01:00
22 lines
504 B
JSON
22 lines
504 B
JSON
|
{
|
||
|
"extends": ["standard-with-typescript", "prettier"],
|
||
|
"plugins": ["unicorn", "import", "prettier"],
|
||
|
"parserOptions": {
|
||
|
"project": "./tsconfig.json"
|
||
|
},
|
||
|
"env": {
|
||
|
"node": true,
|
||
|
"jest": true
|
||
|
},
|
||
|
"rules": {
|
||
|
"prettier/prettier": "error",
|
||
|
"import/order": [
|
||
|
"error",
|
||
|
{ "groups": ["builtin", "external", "internal"] }
|
||
|
],
|
||
|
"import/extensions": ["error", "always"],
|
||
|
"unicorn/prefer-node-protocol": "error",
|
||
|
"unicorn/prevent-abbreviations": "error"
|
||
|
}
|
||
|
}
|