mirror of
https://github.com/caprover/caprover
synced 2026-08-03 06:10:56 +00:00
33 lines
1.1 KiB
JSON
33 lines
1.1 KiB
JSON
{
|
|
"rules": {
|
|
"class-name": true,
|
|
"comment-format": [true, "check-space"],
|
|
"indent": [true, "spaces"],
|
|
"one-line": [true, "check-open-brace", "check-whitespace"],
|
|
"no-var-keyword": true,
|
|
"quotemark": [true, "single", "avoid-escape"],
|
|
"semicolon": [true, "never", "ignore-bound-class-methods"],
|
|
"typedef-whitespace": [
|
|
true,
|
|
{
|
|
"call-signature": "nospace",
|
|
"index-signature": "nospace",
|
|
"parameter": "nospace",
|
|
"property-declaration": "nospace",
|
|
"variable-declaration": "nospace"
|
|
},
|
|
{
|
|
"call-signature": "onespace",
|
|
"index-signature": "onespace",
|
|
"parameter": "onespace",
|
|
"property-declaration": "onespace",
|
|
"variable-declaration": "onespace"
|
|
}
|
|
],
|
|
"no-internal-module": true,
|
|
"no-trailing-whitespace": true,
|
|
"no-null-keyword": true,
|
|
"jsdoc-format": true
|
|
}
|
|
}
|