{
  "defaultSeverity": "error",
  "extends": [
    "tslint:latest"
  ],
  "jsRules": {},
  "rules": {
    "no-console": false,
    "indent": [true, "spaces", 2],
    "arrow-parens": [true, "ban-single-arg-parens"],
    "curly": [true, "as-needed"],
    "interface-name": [true, "never-prefix"],
    "object-literal-sort-keys": false,
    "quotemark": [true, "single", "jsx-double"],
    "semicolon": [true, "never"],
    "no-submodule-imports": false,
    "no-shadowed-variable": false,
    "no-implicit-dependencies": false,
    "whitespace": [true,
      "check-decl",
      "check-operator",
      "check-module",
      "check-separator",
      "check-type",
      "check-typecast",
      "check-preblock"
    ],
    "max-line-length": [true, {"limit": 120, "ignore-pattern": "^import |^export {(.*?)}"}],
    "trailing-comma": [true, {
      "typeLiterals": "ignore",
      "multiline": "always",
      "singleline": "never",
      "esSpecCompliant": true
    }]
  }
}
