UNPKG

think_validtion

Version:
84 lines 2.21 kB
{ "extends": [ "tslint-config-alloy" ], "linterOptions": { "exclude": [ "**/node_modules/**" ] }, "rules": { "class-name": true, "comment-format": [ false, "check-space" ], "indent": [ true, "spaces" ], "one-line": [ true, "check-open-brace", "check-whitespace" ], "no-var-keyword": true, "quotemark": [ false, "single", "avoid-escape" ], "semicolon": [ true, "always", "ignore-bound-class-methods" ], "whitespace": [ true, "check-branch", "check-decl", "check-operator", "check-module", "check-separator", "check-type" ], "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" } ], "no-internal-module": true, "no-trailing-whitespace": false, "no-null-keyword": false, "prefer-const": true, "jsdoc-format": true, "no-redundant-jsdoc": false, "ordered-imports": false, "no-empty": false, "eofline": false, "no-var-requires": false, "no-magic-numbers": false, "only-arrow-functions": false, "type-literal-delimiter": false, "no-parameter-reassignment": false, "no-angle-bracket-type-assertion": false, "member-access": false, "member-ordering": false, "linebreak-style": [ false, "windows" ] } }