UNPKG

n8n-nodes-wax

Version:

n8n Community Node Package for the WAX Blockchain

171 lines (170 loc) 3.57 kB
{ "defaultSeverity": "warning", "project": "./tsconfig.json", "extends": [ "tslint-eslint-rules" ], "rulesDirectory": [ "node_modules/tslint-origin-ordered-imports-rule/dist", "node_modules/tslint-consistent-codestyle/rules" ], "rules": { "trailing-comma": [ true, { "multiline": "never", "singleline": "never" } ], "no-unused": true, "no-return-undefined": true, "no-unnecessary-else": true, "no-collapsible-if": true, "no-as-type-assertion": true, "arrow-return-shorthand": true, "callable-types": true, "class-name": true, "no-multi-spaces": true, "prefer-for-of": true, "typedef": [ true, "call-signature", "parameter", "property-declaration" ], "comment-format": [ true, "check-space" ], "curly": true, "eofline": true, "forin": true, "import-blacklist": [ true, "rxjs" ], "import-spacing": true, "indent": [ true, "spaces", 4 ], "ter-indent": [ true, 4, { "SwitchCase": true } ], "interface-over-type-literal": false, "interface-name": false, "label-position": true, "origin-ordered-imports": [ true, "one-blank-line" ], "max-line-length": [ true, 160 ], "member-access": [ true, "no-public" ], "member-ordering": [ true, { "order": [ "public-instance-field", "protected-instance-field", "private-instance-field", "public-constructor", "public-instance-method", "protected-instance-method", "private-instance-method" ] } ], "no-arg": true, "no-bitwise": false, "no-consecutive-blank-lines": true, "no-console": [ true, "log", "debug", "time", "timeEnd", "trace" ], "no-construct": true, "no-debugger": true, "no-duplicate-super": true, "no-empty": false, "no-empty-interface": true, "no-eval": true, "no-inferrable-types": [ true, "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, "switch-default": true, "no-trailing-whitespace": false, "no-unnecessary-initializer": true, "no-unused-expression": true, "no-var-keyword": true, "object-literal-sort-keys": false, "one-line": [ true, "check-open-brace", "check-catch", "check-else", "check-whitespace" ], "prefer-const": true, "quotemark": [ true, "single" ], "radix": true, "semicolon": [ true, "always" ], "triple-equals": [ true ], "typedef-whitespace": [ true, { "call-signature": "nospace", "index-signature": "nospace", "parameter": "nospace", "property-declaration": "nospace", "variable-declaration": "nospace" } ], "unified-signatures": true, "variable-name": [ true, "ban-keywords", "check-format", "allow-trailing-underscore", "allow-pascal-case", "allow-leading-underscore" ], "whitespace": [ true, "check-branch", "check-decl", "check-operator", "check-separator", "check-type", "check-module" ] } }