{
  "tslint.options": {
    "project": "tsconfig.json",
    "typeCheck": true
  },
  "rules": {
    "align": [true, "parameters", "statements"],
    "array-type": [true, "array-simple"],
    "arrow-parens": [true, "ban-single-arg-parens"],
    "arrow-return-shorthand": [true, "multiline"],
    "comment-format": [true, "check-space"],
    "class-name": true,
    "import-spacing": true,
    "interface-name": [true, "always-prefix"],
    "new-parens": true,
    "no-angle-bracket-type-assertion": true,
    "no-consecutive-blank-lines": [true],
    "no-trailing-whitespace": true,
    "no-unnecessary-initializer": true,
    "object-literal-shorthand": true,
    "one-line": [true, "check-catch", "check-finally", "check-else"],
    "one-variable-per-declaration": [true, "ignore-for-loop"],
    "prefer-function-over-method": [true, "allow-public", "allow-protected"],
    "prefer-method-signature": true,
    "quotemark": [true, "single", "avoid-escape"],
    "semicolon": [true, "never"],
    "space-before-function-paren": [true, "always"],
    "variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"],
    "whitespace": [
      true,
      "check-branch",
      "check-module",
      "check-operator",
      "check-decl",
      "check-separator",
      "check-type",
      "check-typecast"
    ],
    "eofline": true,
    "indent": [true, "spaces"],
    "max-classes-per-file": [true, 1],
    "max-line-length": [true, 110],
    "no-require-imports": false,
    // "object-literal-sort-keys": true,
    "prefer-const": true,
    "adjacent-overload-signatures": true,
    "member-access": [true, "check-accessor"],
    "member-ordering": [
      true, {
        "order": [{
          "name": "static non-private",
          "kinds": [
            "public-static-field",
            "protected-static-field",
            "public-static-method",
            "protected-static-method"
          ]
        },
        "constructor"
      ]
    }],
    "no-reference": true,
    "no-var-requires": false,
    "only-arrow-functions": [true],
    "unified-signatures": true,
    "no-conditional-assignment": true,
    "no-duplicate-variable": true,
    "no-empty": true,
    "no-eval": true,
    "no-invalid-this": [true, "check-function-in-method"],
    "no-shadowed-variable": true,
    "no-string-literal": true,
    "no-string-throw": true,
    "no-switch-case-fall-through": true,
    "no-unsafe-any": false,
    "no-unsafe-finally": true,
    "no-unused-expression": true,
    "no-unused-variable": [true, {"ignore-pattern": "^_"}],
    "no-use-before-declare": true,
    "no-var-keyword": true,
    "no-void-expression": false,
    "radix": true,
    "switch-default": true,
    "triple-equals": true,
    "typeof-compare": true,
    "use-isnan": true,
    "typedef-whitespace": [true, {
      "call-signature": "nospace",
      "index-signature": "nospace",
      "parameter": "nospace",
      "property-declaration": "nospace",
      "variable-declaration": "nospace"
    }],
    "curly": true
  }
}
