{
  "root": true,

  "parser": "@typescript-eslint/parser",

  "plugins": [
    "@typescript-eslint",
    "smarter-tabs"
  ],

  "extends": [
    "eslint:recommended",
    "plugin:@typescript-eslint/recommended"
  ],

	"rules": {
    "brace-style":               ["warn", "1tbs", { "allowSingleLine": true }],
		"no-mixed-spaces-and-tabs":  ["warn", "smart-tabs"],
		"smarter-tabs/smarter-tabs": "warn"
	},

  "overrides": [
    {
      "files": ["test/*.test.ts"],
      "rules": {
        "@typescript-eslint/no-non-null-assertion": "off"
      }
    }
  ]
}
