Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| { | |
| "rules": { | |
| "align": [ | |
| true, | |
| "parameters", | |
| "arguments", | |
| "statements" | |
| ], | |
| "ban": false, | |
| "class-name": true, | |
| "comment-format": [ | |
| true, | |
| "check-space" | |
| ], | |
| "curly": true, | |
| "eofline": true, | |
| "forin": true, | |
| "indent": [ | |
| true, | |
| "spaces" | |
| ], | |
| "interface-name": false, | |
| "jsdoc-format": true, | |
| "label-position": true, | |
| "max-line-length": [ | |
| false, | |
| 140 | |
| ], | |
| "member-ordering": [ | |
| true, | |
| "public-before-private", | |
| "static-before-instance", | |
| "variables-before-functions" | |
| ], | |
| "no-any": false, | |
| "no-arg": true, | |
| "no-bitwise": true, | |
| "no-console": [ | |
| true, | |
| "debug", | |
| "info", | |
| "time", | |
| "timeEnd", | |
| "trace" | |
| ], | |
| "no-consecutive-blank-lines": true, | |
| "no-construct": true, | |
| "no-parameter-properties": false, | |
| "no-debugger": true, | |
| "no-duplicate-variable": true, | |
| "no-shadowed-variable": true, | |
| "no-empty": false, | |
| "no-eval": true, | |
| "no-require-imports": false, | |
| "no-string-literal": true, | |
| "no-switch-case-fall-through": true, | |
| "trailing-comma": [true, { | |
| "multiline": "always", | |
| "singleline": "never" | |
| }], | |
| "no-trailing-whitespace": true, | |
| "no-unused-expression": true, | |
| "no-use-before-declare": true, | |
| "no-var-keyword": true, | |
| "no-var-requires": true, | |
| "one-line": [ | |
| true, | |
| "check-catch", | |
| "check-else", | |
| "check-open-brace", | |
| "check-whitespace" | |
| ], | |
| "prefer-const": [ | |
| true, | |
| { | |
| "destructuring": "all" | |
| } | |
| ], | |
| "quotemark": [ | |
| true, | |
| "double" | |
| ], | |
| "radix": true, | |
| "semicolon": true, | |
| "switch-default": true, | |
| "triple-equals": [ | |
| true, | |
| "allow-null-check" | |
| ], | |
| "typedef": [ | |
| false, | |
| "call-signature", | |
| "parameter", | |
| "property-declaration" | |
| ], | |
| "typedef-whitespace": [ | |
| true, | |
| { | |
| "call-signature": "nospace", | |
| "index-signature": "nospace", | |
| "parameter": "nospace", | |
| "property-declaration": "nospace", | |
| "variable-declaration": "nospace" | |
| } | |
| ], | |
| "variable-name": [ | |
| true, | |
| "allow-leading-underscore" | |
| ], | |
| "whitespace": [ | |
| true, | |
| "check-branch", | |
| "check-decl", | |
| "check-operator", | |
| "check-separator", | |
| "check-type" | |
| ] | |
| }, | |
| "jsRules": { | |
| "align": { | |
| "options": [ | |
| "parameters", | |
| "statements" | |
| ] | |
| }, | |
| "class-name": true, | |
| "curly": true, | |
| "eofline": true, | |
| "forin": true, | |
| "import-spacing": true, | |
| "indent": { | |
| "options": ["spaces"] | |
| }, | |
| "jsdoc-format": true, | |
| "label-position": true, | |
| "max-line-length": { | |
| "options": [120] | |
| }, | |
| "new-parens": true, | |
| "no-arg": true, | |
| "no-bitwise": true, | |
| "no-conditional-assignment": true, | |
| "no-consecutive-blank-lines": true, | |
| "no-console": true, | |
| "no-construct": true, | |
| "no-debugger": true, | |
| "no-duplicate-super": true, | |
| "no-duplicate-variable": true, | |
| "no-empty": true, | |
| "no-eval": true, | |
| "no-reference": true, | |
| "no-shadowed-variable": true, | |
| "no-string-literal": true, | |
| "no-string-throw": true, | |
| "no-switch-case-fall-through": false, | |
| "no-trailing-whitespace": true, | |
| "no-unused-expression": true, | |
| "no-use-before-declare": false, | |
| "object-literal-sort-keys": true, | |
| "one-line": { | |
| "options": [ | |
| "check-catch", | |
| "check-else", | |
| "check-finally", | |
| "check-open-brace", | |
| "check-whitespace" | |
| ] | |
| }, | |
| "one-variable-per-declaration": { | |
| "options": ["ignore-for-loop"] | |
| }, | |
| "quotemark": { | |
| "options": [ | |
| "double", | |
| "avoid-escape" | |
| ] | |
| }, | |
| "radix": true, | |
| "semicolon": { | |
| "options": ["always"] | |
| }, | |
| "space-before-function-paren": { | |
| "options": { | |
| "anonymous": "never", | |
| "asyncArrow": "always", | |
| "constructor": "never", | |
| "method": "never", | |
| "named": "never" | |
| } | |
| }, | |
| "trailing-comma": { | |
| "options": { | |
| "multiline": "always", | |
| "singleline": "never" | |
| } | |
| }, | |
| "triple-equals": { | |
| "options": ["allow-null-check"] | |
| }, | |
| "use-isnan": true, | |
| "variable-name": { | |
| "options": [ | |
| "ban-keywords", | |
| "check-format", | |
| "allow-pascal-case" | |
| ] | |
| }, | |
| "whitespace": { | |
| "options": [ | |
| "check-branch", | |
| "check-decl", | |
| "check-operator", | |
| "check-separator", | |
| "check-type", | |
| "check-typecast" | |
| ] | |
| } | |
| } | |
| } |