mirror of
https://github.com/DinheroDevelopmentGroup/modular-minecraft-proxy.git
synced 2025-02-17 08:33:06 -05:00
36 lines
No EOL
614 B
JSON
36 lines
No EOL
614 B
JSON
{
|
|
"env": {
|
|
"es2021": true,
|
|
"node": true
|
|
},
|
|
"extends": [
|
|
"standard-with-typescript",
|
|
"plugin:require-extensions/recommended"
|
|
],
|
|
"plugins": [
|
|
"require-extensions"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module",
|
|
"project": "tsconfig.json"
|
|
},
|
|
"rules": {
|
|
"import/order": [
|
|
"error",
|
|
{
|
|
"groups": [
|
|
"type",
|
|
"index",
|
|
"sibling",
|
|
"parent",
|
|
"internal",
|
|
"builtin",
|
|
"external",
|
|
"object"
|
|
]
|
|
}
|
|
],
|
|
"no-case-declarations": "off"
|
|
}
|
|
} |