{
  "extends": "tslint:latest",
  "rules": {
    "interface-name": false,
    "max-line-length": [true, 200],
    "member-ordering": [true,
      "public-before-private",
      "static-before-instance",
      "variables-before-functions"
    ],
    "no-duplicate-imports": false,
    "no-namespace": false,
    "no-reference": false,
    "trailing-comma": false,
    "object-literal-sort-keys": false,
    "no-trailing-whitespace": false,
    "comment-format": false,
    "object-literal-shorthand": false,
    "no-string-literal": false,
    "no-consecutive-blank-lines": false,
    "no-empty": false,
    "no-submodule-imports": false,
    "eofline": false,
    "ordered-imports": false,
    "variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-trailing-underscore", "allow-pascal-case"]
  }
}
