You've already forked UsageHelpr
mirror of
https://github.com/FullScreenShenanigans/UsageHelpr.git
synced 2026-04-28 13:03:13 -07:00
79 lines
2.1 KiB
JSON
79 lines
2.1 KiB
JSON
{
|
|
"rules": {
|
|
"align": true,
|
|
"class-name": true,
|
|
"comment-format": [
|
|
true,
|
|
"check-space"
|
|
],
|
|
"eofline": true,
|
|
"indent": [
|
|
true,
|
|
"spaces"
|
|
],
|
|
"jsdoc-format": true,
|
|
"max-line-length": 140,
|
|
"member-access": true,
|
|
"member-ordering": "variables-before-functions",
|
|
"no-angle-bracket-type-assertion": true,
|
|
"no-arg": true,
|
|
"no-consecutive-blank-lines": true,
|
|
"no-constructor-vars": true,
|
|
"no-construct": true,
|
|
"no-duplicate-key": true,
|
|
"no-duplicate-variable": true,
|
|
"no-empty": true,
|
|
"no-eval": true,
|
|
"no-internal-module": true,
|
|
"no-invalid-this": true,
|
|
"no-use-before-declare": true,
|
|
"no-unreachable": true,
|
|
"no-unused-expression": true,
|
|
"no-unused-variable": true,
|
|
"no-shadowed-variable": true,
|
|
"no-string-literal": true,
|
|
"no-switch-case-fall-through": true,
|
|
"no-trailing-whitespace": true,
|
|
"no-var-keyword": true,
|
|
"one-line": [
|
|
true,
|
|
"check-open-brace",
|
|
"check-whitespace"
|
|
],
|
|
"one-variable-per-declaration": true,
|
|
"quotemark": [
|
|
true,
|
|
"double"
|
|
],
|
|
"semicolon": [
|
|
true,
|
|
"always"
|
|
],
|
|
"switch-default": true,
|
|
"trailing-comma": true,
|
|
"triple-equals": true,
|
|
"typedef": true,
|
|
"typedef-whitespace": [
|
|
true,
|
|
{
|
|
"call-signature": "nospace",
|
|
"index-signature": "nospace",
|
|
"parameter": "nospace",
|
|
"property-declaration": "nospace",
|
|
"variable-declaration": "nospace"
|
|
}
|
|
],
|
|
"variable-name": [
|
|
true,
|
|
"ban-keywords"
|
|
],
|
|
"whitespace": [
|
|
true,
|
|
"check-branch",
|
|
"check-decl",
|
|
"check-operator",
|
|
"check-separator",
|
|
"check-type"
|
|
]
|
|
}
|
|
} |