{
  "defaultSeverity": "warning",
  "extends": [
    "tslint:recommended"
  ],
  "linterOptions": {
    "exclude": [
      "node_modules/**"
    ]
  },
  "rules": {
    "quotemark": [true, "single"],
    "indent": [true, "spaces", 2],
    "interface-name": false,
    "no-namespace": false,
    "curly": [true, "ignore-same-line"],
    "semicolon": [ true, "never" ],
    "ordered-imports": false,
    "object-literal-sort-keys": false,
    "member-access": false,
    "no-bitwise": false,
    "no-console": [true, "log"],
    "no-debugger": false,
    "no-shadowed-variable": false,
    "max-line-length": [true, 100],
    "space-before-function-paren": true,
    "only-arrow-functions": false,
    "trailing-comma": "ignore",
    "arrow-parens": false,
    "no-consecutive-blank-lines": false
  }
}

