mirror of
https://github.com/Thream/socketio-jwt.git
synced 2024-07-21 09:38:31 +02:00
24 lines
510 B
JSON
24 lines
510 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"],
|
||
|
"newlines-between": "always"
|
||
|
}
|
||
|
],
|
||
|
"import/extensions": ["error", "always"],
|
||
|
"unicorn/prefer-node-protocol": "error"
|
||
|
}
|
||
|
}
|