{
	"defaultSeverity": "error",
	"extends": [
		"tslint:recommended"
	],
	"jsRules": {},
	"rules": {
		"quotemark": [ true, "double" ],
		"indent": [ true, "tabs", 4 ],
		"member-access": [ true, "no-public" ],
		"member-ordering": [
			true,
			{
				"order": [ "public-constructor" ]
			}
		],
		"object-literal-sort-keys": false,
		"trailing-comma": false,
		"arrow-parens": false,
		"only-arrow-functions": false,
		"align": false,
		"array-type": false,
		"max-line-length": false,
		"one-line": false,
		"ordered-imports": false,
		"no-string-literal": false,
		"prefer-const": false
	}
}
