{
  "rulesDirectory": ["../rules"],
  "extends": ["tslint-eslint-rules"],
  "rules": {
    "tinkoff-method-return-type": true,
    "tinkoff-new-line-after-variable-declaration": true,
    "tinkoff-new-line-around-control-statement": true,
    "tinkoff-angular-member-ordering": true,
    "align": [true, "parameters", "statements"],
    "arrow-parens": [true, "ban-single-arg-parens"],
    "arrow-return-shorthand": true,
    "ban": [true, "fit", "fdescribe"],
    "class-name": true,
    "curly": true,
    "eofline": true,
    "forin": true,
    "interface-name": [true, "never-prefix"],
    "jsdoc-format": true,
    "label-position": true,
    "new-parens": true,
    "no-arg": true,
    "no-bitwise": true,
    "no-conditional-assignment": true,
    "no-console": [true, "log", "debug", "info", "time", "timeEnd", "trace"],
    "no-construct": true,
    "no-debugger": true,
    "no-duplicate-variable": true,
    "no-empty": false,
    "no-eval": true,
    "no-inferrable-types": [true, "ignore-params"],
    "no-internal-module": true,
    "no-reference": true,
    "no-string-literal": false,
    "no-switch-case-fall-through": true,
    "no-unused-expression": true,
    "no-var-keyword": true,
    "no-consecutive-blank-lines": [true, 2],
    "one-variable-per-declaration": true,
    "only-arrow-functions": [true, "allow-named-functions"],
    "prefer-const": [
      true,
      {
        "destructuring": "any"
      }
    ],
    "radix": true,
    "trailing-comma": [
      true,
      {
        "multiline": {
          "arrays": "never",
          "objects": "never",
          "functions": "never",
          "imports": "never",
          "exports": "never",
          "typeLiterals": "never"
        },
        "singleline": "never",
        "esSpecCompliant": true
      }
    ],
    "triple-equals": true,
    "typedef": [true, "parameter"],
    "use-isnan": true
  }
}
