12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- {
- "rules": {
- "class-name": true,
- "comment-format": [
- true,
- "check-space"
- ],
- "curly": true,
- "eofline": true,
- "file-header": [
- true,
- "Copyright \\(c\\)"
- ],
- "indent": [
- true,
- "spaces"
- ],
- "max-line-length": [
- true,
- 120
- ],
- "no-bitwise": true,
- "no-console": [true, "log", "error"],
- "no-duplicate-variable": true,
- "no-eval": true,
- "no-arg": true,
- "no-inferrable-types": true,
- "no-internal-module": true,
- "no-trailing-whitespace": true,
- "no-unused-expression": true,
- "no-unused-variable": false,
- "no-var-keyword": false,
- "one-line": [
- true,
- "check-catch",
- "check-open-brace",
- "check-whitespace"
- ],
- "quotemark": [
- true,
- "single",
- "avoid-escape"
- ],
- "semicolon": [
- true,
- "always"
- ],
- "typedef-whitespace": [
- true,
- {
- "call-signature": "nospace",
- "index-signature": "nospace",
- "parameter": "nospace",
- "property-declaration": "nospace",
- "variable-declaration": "nospace"
- }
- ],
- "variable-name": [
- true,
- "ban-keywords",
- "allow-leading-underscore",
- "allow-pascal-case"
- ],
- "whitespace": [
- true,
- "check-branch",
- "check-decl",
- "check-operator",
- "check-separator",
- "check-type"
- ]
- }
- }
|