jsverify/jsverify

View on GitHub
tslint.json

Summary

Maintainability
Test Coverage
{
  "rules": {
    "adjacent-overload-signatures": true,
    "curly": true,
    "eofline": false,
    "align": [true, "parameters"],
    "class-name": true,
    "indent": [true, "spaces"],
    "no-angle-bracket-type-assertion": true,
    "max-line-length": [true, 100],
    "max-file-line-count": [true, 500],
    "no-consecutive-blank-lines": [true, 1],
    "member-access": true,
    "no-trailing-whitespace": true,
    "no-bitwise": true,
    "no-debugger": true,
    "prefer-const": true,
    "no-empty-interface": true,
    "no-string-throw": true,
    "unified-signatures": true,
    "typeof-compare": true,
    "space-before-function-paren": [
      true,
      {
        "anonymous": "always",
        "named": "never",
        "asyncArrow": "always",
        "method": "never",
        "constructor": "never"
      }
    ],
    "prefer-method-signature": true,
    "arrow-return-shorthand": [false, "multiline"],
    "no-duplicate-variable": true,
    "no-inferrable-types": [true, "ignore-params"],
    "no-var-keyword": true,
    "variable-name": [
      true,
      "ban-keywords",
      "check-format",
      "allow-leading-underscore",
      "allow-pascal-case"
    ],
    "no-empty": false,
    "no-shadowed-variable": true,
    "no-unused-expression": true,
    "triple-equals": true,
    "no-use-before-declare": true,
    "jsdoc-format": true,
    "one-line": [true,
      "check-else",
      "check-whitespace",
      "check-open-brace"],
    "trailing-comma": [true, {"multiline": "always", "singleline": "never"}],
    "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"
      },
      {
        "call-signature": "onespace",
        "index-signature": "onespace",
        "parameter": "onespace",
        "property-declaration": "onespace",
        "variable-declaration": "onespace"
      }
    ],
    "whitespace": [false,
      "check-branch",
      "check-decl",
      "check-operator",
      "check-separator",
      "check-type"]
  }
}