UNPKG

wapp-cli

Version:
179 lines (178 loc) 3.57 kB
{ "extends": [ "tslint:recommended", "tslint-config-prettier" ], "lib": [ "ES2015", "ES2016", "ES2017" ], "linterOptions": { "exclude": [ "node_modules/**/*.ts", "dist", "config", "build", "src/**/*.d.ts", "./**/*.js" ] }, "rules": { "member-access": [ true, "no-public" ], "interface-name": [ true, "always-prefix" ], "align": [ true, "parameters", "statements" ], "class-name": true, "comment-format": [ true, "check-space" ], "curly": true, "eofline": true, "forin": false, "indent": [ true, "spaces" ], "noImplicitThis": false, "jsdoc-format": false, "label-position": true, "max-line-length": [ true, 200 ], "member-ordering": [ true, { "order": "statics-first" } ], "new-parens": true, "no-any": false, "no-arg": true, "no-bitwise": false, "no-conditional-assignment": true, "no-consecutive-blank-lines": true, "no-console": [ false, "debug", "info", "log", "time", "timeEnd", "warn", "trace" ], "no-construct": true, "no-constructor-vars": false, "no-debugger": false, "no-duplicate-variable": true, "no-empty": false, "no-eval": true, "no-internal-module": true, "no-namespace": true, "no-reference": true, "no-shadowed-variable": false, "no-string-literal": true, "no-switch-case-fall-through": false, "no-trailing-whitespace": true, "no-unused-expression": [ true, "allow-fast-null-checks" ], "no-use-before-declare": false, "no-var-keyword": true, "no-var-requires": false, "object-literal-sort-keys": false, "one-line": [ true, "check-catch", "check-else", "check-finally", "check-open-brace", "check-whitespace" ], "one-variable-per-declaration": [ true, "ignore-for-loop" ], "quotemark": [ true, "single", "jsx-double" ], "radix": true, "semicolon": [ true, "always" ], "switch-default": true, "trailing-comma": [ false, { "singleline": "never", "multiline": "always", "esSpecCompliant": true } ], "triple-equals": [ true, "allow-null-check" ], "typedef": false, "max-classes-per-file": [ true, 10, "exclude-class-expressions" ], "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" } ], "use-isnan": true, "variable-name": [ true, "allow-leading-underscore", "allow-trailing-underscore", "ban-keywords", "check-format", "allow-pascal-case", "allow-snake-case" ], "whitespace": [ true, "check-branch", "check-decl", "check-operator", "check-separator", "check-type", "check-typecast" ], "jsx-no-lambda": false, "jsx-no-string-ref": false, "jsx-wrap-multiline": false } }