Godzil/Crunchy

View on GitHub
tslint.json

Summary

Maintainability
Test Coverage
{
  "extends": "tslint:latest",
  "rules": {
    "ban": false,
    "class-name": true,
    "comment-format": [true,
      "check-space"
    ],
    "curly": false,
    "eofline": false,
    "forin": true,
    "indent": [true, "spaces", 2],
    "interface-name": true,
    "jsdoc-format": true,
    "label-position": true,
    "max-line-length": [true, 140],
    "member-ordering": false,
    "no-shadowed-variable": false,
    "array-type": [true, "array"],
    "trailing-comma": false,
    "no-any": false,
    "no-arg": true,
    "no-bitwise": true,
    "prefer-conditional-expression": false,
    "space-within-parens": false,
    "no-object-literal-type-assertion": false,
    "no-console": [true,
      "debug",
      "time",
      "timeEnd",
      "trace"
    ],
    "no-construct": true,
    "no-debugger": true,
    "no-duplicate-variable": true,
    "no-empty": true,
    "no-eval": true,
    "no-string-literal": true,
    "no-switch-case-fall-through": true,
    "no-trailing-whitespace": true,
    "no-unused-expression": true,
    "no-use-before-declare": false,
    "no-var-requires": true,
    "one-line": [true,
      "check-whitespace"
    ],
    "quotemark": [true, "single"],
    "radix": true,
    "semicolon": true,
    "triple-equals": [true, "allow-null-check"],
    "typedef": [true,
      "member-variable-declaration",
      "property-declaration"
    ],
    "typedef-whitespace": [true, {
      "call-signature": "nospace",
      "index-signature": "nospace",
      "parameter": "nospace",
      "property-declaration": "nospace",
      "variable-declaration": "nospace"
    }],
    "variable-name": false,
    "whitespace": [true,
      "check-branch",
      "check-decl",
      "check-operator",
      "check-separator",
      "check-type"
    ],
    "object-literal-sort-keys": false,
    "ordered-imports": false
  }
}