UNPKG

vue-notifications

Version:
155 lines (154 loc) 3.5 kB
{ "extends": [ "tslint:latest", "tslint-config-prettier" ], "rules": { "interface-name": [ true, "never-prefix" ], "no-implicit-dependencies": [ true, "dev" ], "max-line-length": [ true, { "limit": 240, "ignore-pattern": "^import |^export {(.*?)}" } ], "new-parens": true, "no-arg": true, "no-bitwise": true, "no-conditional-assignment": true, "no-consecutive-blank-lines": false, "no-console": { "severity": "warning", "options": [ "debug", "info", "log", "time", "timeEnd", "trace" ] }, "curly": [ true, "ignore-same-line" ], "no-angle-bracket-type-assertion": false, "prefer-conditional-expression": false, "object-literal-sort-keys": false, "comment-format": false, "prefer-const": true, "quotemark": [ true, "single" ], "semicolon": [ true, "never" ], "whitespace": [ true, "check-branch", "check-decl", "check-operator", "check-separator", "check-type", "check-rest-spread" ], "one-line": [ true, "check-open-brace", "check-catch", "check-else", "check-whitespace" ], "no-var-keyword": true, "no-parameter-reassignment": true, "typedef": [ true, "parameter", "call-signature" ], "no-delete": false, "no-dynamic-delete": false, "no-mixed-interface": false, "no-invalid-this": false, "no-for-in-array": true, "no-irregular-whitespace": true, "no-unnecessary-callback-wrapper": true, "number-literal-format": true, "arrow-return-shorthand": true, "callable-types": true, "class-name": true, "forin": true, "import-spacing": true, "indent": [ true, "spaces" ], "interface-over-type-literal": true, "label-position": true, "member-access": false, "one-variable-per-declaration": [ true, "ignore-for-loop" ], "no-construct": true, "no-debugger": true, "no-duplicate-variable": true, "no-duplicate-super": true, "no-empty": false, "no-empty-interface": true, "no-eval": true, "no-inferrable-types": [ false, "ignore-params" ], "no-misused-new": true, "no-non-null-assertion": true, "no-shadowed-variable": true, "no-string-literal": false, "no-string-throw": true, "no-switch-case-fall-through": true, "no-unnecessary-initializer": true, "no-trailing-whitespace": [ true, "ignore-template-strings" ], "no-unused-expression": true, "no-use-before-declare": true, "radix": true, "triple-equals": [ true, "allow-null-check" ], "typedef-whitespace": [ true, { "call-signature": "nospace", "index-signature": "nospace", "parameter": "nospace", "property-declaration": "nospace", "variable-declaration": "nospace" } ], "unified-signatures": true, "variable-name": false, "use-view-encapsulation": false, "no-duplicate-switch-case": true, "ban-comma-operator": true, "prefer-object-spread": true, "prefer-for-of": true, "no-duplicate-imports": true, "no-this-assignment": true, "no-unused-variable": true, "no-require-imports": true, "object-literal-shorthand": false } }