| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- {
- "rules": {
- "align": false,
- "ban": [
- true,
- {
- "name": ["*", "Promise", "otherwise"],
- "message": "Use .catch() instead"
- }
- ],
- "class-name": true,
- "comment-format": false,
- "curly": true,
- "eofline": true,
- "forin": false,
- "indent": [
- true,
- "spaces"
- ],
- "interface-name": false,
- "jsdoc-format": true,
- "label-position": true,
- "max-line-length": false,
- "member-access": false,
- "member-ordering": false,
- "no-any": false,
- "no-arg": true,
- "no-bitwise": false,
- "no-conditional-assignment": true,
- "no-console": false,
- "no-consecutive-blank-lines": false,
- "no-construct": true,
- "no-debugger": true,
- "no-default-export": false,
- "no-duplicate-variable": true,
- "no-empty": false,
- "no-eval": true,
- "no-inferrable-types": false,
- "no-internal-module": true,
- "no-require-imports": false,
- "no-shadowed-variable": false,
- "no-string-literal": false,
- "no-switch-case-fall-through": false,
- "no-trailing-whitespace": true,
- "no-unnecessary-class": false,
- "no-unused-expression": false,
- "no-use-before-declare": false,
- "no-var-keyword": true,
- "no-var-requires": false,
- "one-line": [
- true,
- "check-open-brace",
- "check-whitespace"
- ],
- "prefer-const": true,
- "quotemark": [
- true,
- "double",
- "avoid-escape"
- ],
- "radix": true,
- "semicolon": [
- true,
- "always"
- ],
- "space-before-function-paren": [
- true,
- {
- "anonymous": "never",
- "asyncArrow": "always",
- "constructor": "never",
- "method": "never",
- "named": "never"
- }
- ],
- "switch-default": false,
- "trailing-comma": [
- true,
- {
- "multiline": "never",
- "singleline": "never"
- }
- ],
- "triple-equals": [
- true,
- "allow-null-check"
- ],
- "typedef": false,
- "typedef-whitespace": [
- true,
- {
- "call-signature": "nospace",
- "index-signature": "nospace",
- "parameter": "nospace",
- "property-declaration": "nospace",
- "variable-declaration": "nospace"
- },
- {
- "call-signature": "onespace",
- "index-signature": "onespace",
- "parameter": "onespace",
- "property-declaration": "onespace",
- "variable-declaration": "onespace"
- }
- ],
- "variable-name": false,
- "whitespace": [
- true,
- "check-branch",
- "check-decl",
- "check-operator",
- "check-module",
- "check-separator",
- "check-type",
- "check-typecast",
- "check-preblock"
- ],
- "brace-style": [
- true,
- {
- "allowSingleLine": true
- }
- ],
- "no-unexisting-dojo-plugin-imports": [
- true,
- {
- "base": "../"
- }
- ],
- "no-checked-in-generated-files": true,
- "no-unexisting-amd-dependencies": [
- true,
- {
- "base": "../"
- }
- ],
- "imports-format": [
- true,
- {
- "base": "../"
- }
- ],
- "prefer-relative-imports": [
- true,
- {
- "base": "../"
- }
- ],
- "suspicious-read-only": true
- },
- "rulesDirectory": [
- "../tsrules"
- ]
- }
|