{
  "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-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,
    "eofline": false
  }
}