{
	"rulesDirectory": "node_modules/tslint-eslint-rules/dist/rules",
	"rules": {
		"accessor-pairs": [false, {}],
		"block-scoped-var": true,
		"complexity": [false, 11],
		"consistent-return": true,
		"curly": true,
		"default-case": true,
		"dot-location": false,
		"dot-notation": [true, { "allowKeywords": true }],
		"eqeqeq": true,
		"guard-for-in": true,
		"no-alert": true,
		"no-caller": true,
		"no-div-regex": false,
		"no-else-return": true,
		"no-empty-label": true,
		"no-eq-null": false,
		"no-eval": true,
		"no-extend-native": [true, {}],
		"no-extra-bind": true,
		"no-fallthrough": true,
		"no-floating-decimal": true,
		"no-implicit-coercion": false,
		"no-implied-eval": true,
		"no-invalid-this": false,
		"no-iterator": true,
		"no-labels": true,
		"no-lone-blocks": true,
		"no-loop-func": true,
		"no-multi-spaces": [true, { "exceptions": { "ImportDeclaration": true, "VariableDeclarator": true } }],
		"no-multi-str": true,
		"no-new": true,
		"no-new-func": true,
		"no-new-wrappers": true,
		"no-octal-escape": true,
		"no-param-reassign": [true, {}],
		"no-process-env": false,
		"no-proto": true,
		"no-redeclare": true,
		"no-return-assign": [true, {}],
		"no-script-url": true,
		"no-self-compare": true,
		"no-sequences": true,
		"no-throw-literal": true,
		"no-unused-expressions": true,
		"no-useless-call": false,
		"no-void": false,
		"no-warning-comments": [false, { "terms": ["todo", "fixme", "xxx"], "location": "start" }],
		"no-with": true,
		"radix": true,
		"vars-on-top": true,
		"wrap-iife": [true, "any"],
		"yoda": true,
		"comma-dangle": [true, { "multiline": "always", "singleline": "never" }],
		"no-conditional-assignment": true,
		"no-console": [true, ["log", "error", "info"]],
		"no-constant-condition": 1,
		"no-control-regex": true,
		"no-debugger": 1,
		"no-dupe-args": true,
		"no-dupe-keys": true,
		"no-duplicate-case": true,
		"no-empty-character-class": true,
		"no-empty": true,
		"no-ex-assign": true,
		"no-extra-boolean-cast": false,
		"no-extra-parens": [true, "functions"],
		"no-extra-semi": true,
		"no-func-assign": true,
		"no-inner-declarations": true,
		"no-invalid-regexp": true,
		"no-irregular-whitespace": true,
		"no-negated-in-lhs": true,
		"no-obj-calls": true,
		"no-regex-spaces": true,
		"no-sparse-arrays": true,
		"no-unreachable": true,
		"use-isnan": true,
		"valid-jsdoc": false,
		"valid-typeof": true,
		"no-unexpected-multiline": false,
		"arrow-parens": false,
		"arrow-spacing": false,
		"constructor-super": false,
		"generator-star-spacing": false,
		"no-class-assign": false,
		"no-const-assign": false,
		"no-this-before-super": false,
		"no-var": true,
		"object-shorthand": false,
		"prefer-const": true,
		"prefer-spread": false,
		"prefer-reflect": false,
		"require-yield": false,
		"max-depth": [false, 4],
		"max-len": [false, 80, 4],
		"max-params": [false, 3],
		"max-statements": [false, 10],
		"no-bitwise": false,
		"no-plusplus": false,
		"callback-return": false,
		"handle-callback-err": false,
		"no-mixed-requires": [false, false],
		"no-new-require": false,
		"no-path-concat": false,
		"no-process-exit": false,
		"no-restricted-modules": false,
		"no-sync": false,
		"strict": [true, "never"],
		"array-bracket-spacing": false,
		"brace-style": [true, "1tbs", {"allowSingleLine": true }],
		"camelcase": [true, {"properties": "never"}],
		"comma-spacing": [true, {"before": false, "after": true}],
		"comma-style": [true, "last"],
		"computed-property-spacing": false,
		"consistent-this": false,
		"eol-last": true,
		"func-names": true,
		"func-style": false,
		"id-length": [false, {"min": true, "properties": "never"}],
		"indent": [true, "tabs"],
		"jsx-quotes": true,
		"key-spacing": [true, {"beforeColon": false, "afterColon": true}],
		"lines-around-comment": false,
		"linebreak-style": false,
		"max-nested-callbacks": false,
		"new-parens": false,
		"newline-after-var": false,
		"no-array-constructor": false,
		"no-continue": false,
		"no-inline-comments": false,
		"no-lonely-if": false,
		"no-mixed-spaces-and-tabs": false,
		"no-multiple-empty-lines": [true, {"max": 2}],
		"no-nested-ternary": true,
		"no-new-object": true,
		"no-spaced-func": true,
		"no-ternary": false,
		"no-trailing-spaces": true,
		"no-underscore-dangle": false,
		"no-unneeded-ternary": false,
		"object-curly-spacing": false,
		"one-var": [true, "never"],
		"operator-assignment": false,
		"operator-linebreak": false,
		"padded-blocks": [false, "always"],
		"quote-props": false,
		"quotemark": [true, "single", "avoid-escape"],
		"id-match": false,
		"semi-spacing": [true, {"before": false, "after": true}],
		"semi": [true, "never"],
		"sort-vars": false,
		"space-after-keywords": true,
		"space-before-blocks": true,
		"space-before-function-paren": [true, "never"],
		"space-in-parens": false,
		"space-infix-ops": true,
		"space-return-throw-case": true,
		"space-unary-ops": false,
		"spaced-comment": [true, "always"],
		"wrap-regex": false,
		"init-declarations": false,
		"no-catch-shadow": false,
		"no-delete-var": true,
		"no-label-var": false,
		"no-shadow-restricted-names": true,
		"no-shadow": true,
		"no-undef-init": false,
		"no-undef": true,
		"no-undefined": false,
		"no-unused-vars": true,
		"no-use-before-define": true
	}
}
