56 lines
1.6 KiB
JSON
56 lines
1.6 KiB
JSON
{
|
|
"root": true,
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["@typescript-eslint", "prettier"],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"prettier"
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/no-explicit-any": 0,
|
|
"@typescript-eslint/no-unused-vars": 1,
|
|
"@typescript-eslint/no-empty-interface": 0,
|
|
"@typescript-eslint/no-namespace": 0,
|
|
"@typescript-eslint/comma-dangle": 1,
|
|
"@typescript-eslint/func-call-spacing": 2,
|
|
"@typescript-eslint/quotes": 1,
|
|
"@typescript-eslint/naming-convention": [
|
|
"warn",
|
|
{
|
|
"selector": "default",
|
|
"format": ["camelCase"],
|
|
"leadingUnderscore": "allow"
|
|
},
|
|
{
|
|
"selector": "typeLike",
|
|
"format": ["PascalCase"]
|
|
},
|
|
{
|
|
"selector": "objectLiteralProperty",
|
|
"format": ["PascalCase", "camelCase"],
|
|
"leadingUnderscore": "allow"
|
|
},
|
|
{
|
|
"selector": "typeProperty",
|
|
"format": ["PascalCase", "camelCase"],
|
|
"leadingUnderscore": "allow"
|
|
},
|
|
{
|
|
"selector": "enumMember",
|
|
"format": ["UPPER_CASE"]
|
|
}
|
|
],
|
|
"prettier/prettier": ["error"]
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["*.mjs", "*.ts"],
|
|
"env": {
|
|
"node": true
|
|
}
|
|
}
|
|
]
|
|
}
|