{
  "defaultSeverity": "error",
  "extends": [
    "tslint:recommended",
    "tslint-consistent-codestyle"
  ],
  "jsRules": {
    "object-literal-sort-keys": false
  },
  "rules": {
    "align": [
      true,
      "arguments",
      "parameters",
      "statements"
    ],
    "array-type": [
      true,
      "array"
    ],
    "arrow-parens": [
      true,
      "ban-single-arg-parens"
    ],
    "ban": false,
    "interface-name": [
      true,
      "never-prefix"
    ],
    "label-position": true,
    "max-line-length": [
      true,
      120
    ],
    "member-access": false,
    "newline-before-return": true,
    "no-console": [
      true,
      "debug",
      "error",
      "info",
      "log",
      "time",
      "timeEnd",
      "trace"
    ],
    "no-inferrable-types": [
      true,
      "ignore-params"
    ],
    "no-collapsible-if": true,
    "no-else-after-return": true,
    "no-return-await": true,
    "no-string-literal": false,
    "no-switch-case-fall-through": true,
    "no-unnecessary-else": true,
    "object-literal-sort-keys": false,
    "object-shorthand-properties-first": true,
    "ordered-imports": false,
    "quotemark": [
      true,
      "single"
    ],
    "switch-default": true,
    "trailing-comma": [
      true,
      {
        "multiline": "never",
        "singleline": "never"
      }
    ],
    "triple-equals": [
      true,
      "allow-null-check"
    ],
    "typedef": [
      true,
      "parameter",
      "property-declaration"
    ],
    "variable-name": [
      true,
      "allow-leading-underscore",
      "allow-pascal-case",
      "ban-keywords",
      "check-format"
    ],
    "whitespace": [
      true,
      "check-branch",
      "check-decl",
      "check-module",
      "check-operator",
      "check-separator",
      "check-type",
      "check-typecast"
    ]
  }
}
