17 lines
373 B
JSON
17 lines
373 B
JSON
|
{
|
||
|
"extends": ["conventions", "prettier"],
|
||
|
"plugins": ["prettier", "import", "unicorn"],
|
||
|
"parserOptions": {
|
||
|
"project": "./tsconfig.json"
|
||
|
},
|
||
|
"env": {
|
||
|
"node": true
|
||
|
},
|
||
|
"rules": {
|
||
|
"prettier/prettier": "error",
|
||
|
"import/extensions": ["error", "always"],
|
||
|
"unicorn/prevent-abbreviations": "error",
|
||
|
"unicorn/prefer-node-protocol": "error"
|
||
|
}
|
||
|
}
|