{
  "rules": {
      "adjacent-overload-signatures": true,
      "member-access": true,
      "member-ordering": [true, { "order": "fields-first" }],
      "no-any": false,
      "no-inferrable-types": true,
      "no-internal-module": true,
      "no-magic-numbers": true,
      "no-namespace": true,
      "no-reference": true,
      "no-var-requires": true,
      "only-arrow-functions": [true],
      "prefer-for-of": true,
      "promise-function-async": false,
      "typedef": [true],
      "typedef-whitespace": [true],



      "curly": true,
      "forin": true,
      "label-position": true,
      "no-arg": true,
      "no-bitwise": true,
      "no-conditional-assignment": true,
      "no-console": [true],
      "no-construct": true,
      "no-debugger": true,
      "no-duplicate-variable": true,
      "no-empty": true,
      "no-eval": true,
      "no-for-in-array": false,
      "no-inferred-empty-object-type": false,
      "no-invalid-this": true,
      "no-shadowed-variable": true,
      "no-string-literal": true,
      "no-switch-case-fall-through": true,
      "no-unsafe-finally": true,
      "no-unused-expression": true,
      "no-unused-new": true,
      "no-use-before-declare": true,
      "no-var-keyword": true,
      "radix": true,
      "restrict-plus-operands": false,
      "strict-boolean-expressions": false,
      "switch-default": true,
      "triple-equals": true,
      "use-isnan": true,


      "cyclomatic-complexity": [true],
      "eofline": true,
      "indent": [true, "spaces"],
      "linebreak-style": [false],
      "max-classes-per-file": [true, 1],
      "max-file-line-count": [true, 300],
      "max-line-length": [true, 120],
      "no-default-export": true,
      "no-mergeable-namespace": true,
      "no-require-imports": true,
      "no-trailing-whitespace": true,
      "object-literal-sort-keys": false ,
      "prefer-const": true,
      "trailing-comma": [true, {"multiline": "never", "singleline": "never"}],
      "align": [true, "parameters", "statements"],
      "array-type": [true, "generic"],
      "arrow-parens": true,
      "class-name": true,
      "comment-format": [true, "check-space"],
      "completed-docs": [false],
      "file-header": [false],
      "interface-name": [true, "always-prefix"],
      "jsdoc-format": true,
      "new-parens": true,
      "no-angle-bracket-type-assertion": true,
      "no-consecutive-blank-lines": [true, 2],
      "no-parameter-properties": true,
      "object-literal-key-quotes": [true, "as-needed"],
      "object-literal-shorthand": true,
      "one-line": [true, "check-open-brace", "check-whitespace"],
      "one-variable-per-declaration": [true],
      "ordered-imports": [false],
      "quotemark": [true, "single"],
      "semicolon": [true],
      "variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case", "allow-leading-underscore"],
      "whitespace": [true,
          "check-branch",
          "check-decl",
          "check-operator",
          "check-separator",
          "check-type",
          "check-module",
          "check-typecast"
      ]
  },
  "jsRules": {
      "indent": [true, "spaces"],
      "no-duplicate-variable": true,
      "no-eval": true,
      "no-trailing-whitespace": true,
      "one-line": [true, "check-open-brace", "check-whitespace"],
      "quotemark": [true, "double"],
      "semicolon": [false],
      "triple-equals": [true, "allow-null-check"],
      "variable-name": [true, "ban-keywords"],
      "whitespace": [true,
          "check-branch",
          "check-decl",
          "check-operator",
          "check-separator",
          "check-type"
      ]
  }
}
