17 lines
376 B
JSON
17 lines
376 B
JSON
{
|
|
"extends": ["standard-with-typescript", "eslint-config-prettier"],
|
|
"plugins": ["unicorn", "eslint-plugin-prettier"],
|
|
"parserOptions": {
|
|
"project": "./tsconfig.json"
|
|
},
|
|
"env": {
|
|
"node": true,
|
|
"jest": true
|
|
},
|
|
"rules": {
|
|
"prettier/prettier": "error",
|
|
"unicorn/prefer-node-protocol": "error",
|
|
"unicorn/prevent-abbreviations": "error"
|
|
}
|
|
}
|