{
  "extends": "tslint:recommended",
  "rules": {
    "triple-equals": [true, "allow-null-check"],
    "indent": [true, "spaces", 4],
    "arrow-parens": true,
    "class-name": true,
    "interface-name": [true, "always-prefix"],
    "import-spacing": true,
    "semicolon": [true, "always"],
    "switch-final-break": [true, "always"],
    "variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"],
    "whitespace": ["check-branch", "check-decl", "check-operator", "check-module", "check-typecast", "check-preblock"],
    "curly": true,
    "no-empty": true,
    "no-var-keyword": true,
    "eofline": true,
    "space-before-function-paren": true,
    "no-var-requires": false,
    "ordered-imports": ["any"],
    "object-literal-sort-keys": false,
    "no-string-literal": false
  }
}
