Skip to content

Instantly share code, notes, and snippets.

@KhodeN
Created January 19, 2016 01:43
Show Gist options
  • Save KhodeN/30970cbbaecd2c1e1594 to your computer and use it in GitHub Desktop.
Save KhodeN/30970cbbaecd2c1e1594 to your computer and use it in GitHub Desktop.
{
"rules": {
"member-access": true,
"member-ordering": [
true,
"public-before-private",
"static-before-instance",
"variables-before-functions"
],
"no-any": false,
"no-inferrable-types": false,
"no-internal-module": true,
"no-var-requires": false,
"typedef": false,
"typedef-whitespace": false,
"ban": false,
"curly": true,
"forin": true,
"label-position": true,
"label-undefined": true,
"no-arg": true,
"no-bitwise": true,
"no-conditional-assignment": true,
"no-console": [false, "debug", "info", "time", "timeEnd", "trace"],
"no-construct": true,
"no-debugger": true,
"no-duplicate-key": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-eval": true,
"no-null-keyword": true,
"no-shadowed-variable": true,
"no-string-literal": true,
"no-switch-case-fall-through": true,
"no-unreachable": true,
"no-unused-expression": false,
"no-unused-variable": true,
"no-use-before-declare": true,
"no-var-keyword": true,
"radix": true,
"triple-equals": true,
"use-strict": false,
"eofline": true,
"indent": [true, "spaces"],
"max-line-length": [true, 120],
"no-require-imports": false,
"no-trailing-whitespace": true,
"object-literal-sort-keys": false,
"trailing-comma": [
true, {
"multiline": "never",
"singleline": "never"
}
],
"align": false,
"class-name": true,
"comment-format": [true, "check-space"],
"interface-name": true,
"jsdoc-format": true,
"no-consecutive-blank-lines":true,
"no-constructor-vars": false,
"one-line": [
true,
"check-open-brace",
"check-catch",
"check-else",
"check-whitespace"
],
"quotemark": [true, "single"],
"semicolon": true,
"variable-name": false,
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-module",
"check-separator",
"check-type"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment