{
	"rules": {
		"import-no-alias": true,
		"naming-scheme": true,
		"align": [
			false,
			"parameters",
			"arguments",
			"statements"
		],
		"ban": true,
		"class-name": true,
		"comment-format": [
			true,
			"check-space",
			"check-lowercase"
		],
		"curly": true,
		"eofline": true,
		"indent": [
			true,
			"tabs"
		],
		"interface-name": true,
		"jsdoc-format": true,
		"label-position": true,
		"label-undefined": true,
		"member-access": true,
		"member-ordering": [
			true,
			"variables-before-functions"
		],
		"no-any": false,
		"no-arg": true,
		"no-conditional-assignment": true,
		"no-console": [
			true,
			"debug",
			"info",
			"time",
			"timeEnd",
			"trace"
		],
		"no-construct": true,
		"no-constructor-vars": true,
		"no-debugger": true,
		"no-duplicate-key": true,
		"no-shadowed-variable": true,
		"no-duplicate-variable": true,
		"no-empty": true,
		"no-eval": true,
		"no-inferrable-types": true,
		"no-internal-module": true,
		"no-string-literal": true,
		"no-switch-case-fall-through": true,
		"no-trailing-comma": true,
		"no-unreachable": true,
		"no-unused-expression": true,
		"no-unused-variable": true,
		"no-use-before-declare": true,
		"no-var-keyword": true,
		"no-var-requires": true,
		"quotemark": [
			true,
			"single",
			"avoid-escape"
		],
		"radix": true,
		"semicolon": true,
		"sort-object-literal-keys": true,
		"switch-default": true,
		"triple-equals": [
			true,
			"allow-null-check"
		]
	}
}