2019-06-23 03:35:23 -07:00
|
|
|
{
|
|
|
|
"linterOptions": {
|
|
|
|
"exclude": [
|
|
|
|
"node_modules/**/*"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"defaultSeverity": "error",
|
|
|
|
"jsRules": {},
|
|
|
|
"rules": {
|
|
|
|
"array-type": [
|
|
|
|
true,
|
|
|
|
"array-simple"
|
|
|
|
],
|
|
|
|
"arrow-return-shorthand": true,
|
|
|
|
"ban": [
|
|
|
|
true,
|
|
|
|
{
|
|
|
|
"name": "Array",
|
|
|
|
"message": "tsstyle#array-constructor"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"ban-types": [
|
|
|
|
true,
|
|
|
|
[
|
|
|
|
"Object",
|
|
|
|
"Use {} instead."
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"String",
|
|
|
|
"Use 'string' instead."
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"Number",
|
|
|
|
"Use 'number' instead."
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"Boolean",
|
|
|
|
"Use 'boolean' instead."
|
|
|
|
]
|
|
|
|
],
|
|
|
|
"class-name": true,
|
|
|
|
"curly": [
|
|
|
|
true,
|
|
|
|
"ignore-same-line"
|
|
|
|
],
|
|
|
|
"forin": true,
|
|
|
|
"jsdoc-format": true,
|
|
|
|
"label-position": true,
|
:sparkles: Add Wufoo-Trigger node (#597)
* Generic functions, credentials, interface, logo, triggernode
* TSLint tabs rule, request error handling, webhook done
On hold until Wufoo responds with sandbox account
* Removed test logging, fixed various errors, cleaned up
* Sorted imports, adjusted data display, removed anys, tslint import sort rule
* RAAAAAW data
* :zap: Fix logo and improve formatting
* :zap: Improvements
* :zap: Minor improvements to WuFoo-Trigger
Co-authored-by: Rupenieks <ru@myos,co>
Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
2020-10-01 00:07:55 -07:00
|
|
|
"indent": [true, "tabs", 2],
|
2019-06-23 03:35:23 -07:00
|
|
|
"member-access": [
|
|
|
|
true,
|
|
|
|
"no-public"
|
|
|
|
],
|
|
|
|
"new-parens": true,
|
|
|
|
"no-angle-bracket-type-assertion": true,
|
|
|
|
"no-any": true,
|
|
|
|
"no-arg": true,
|
|
|
|
"no-conditional-assignment": true,
|
|
|
|
"no-construct": true,
|
|
|
|
"no-debugger": true,
|
|
|
|
"no-default-export": true,
|
|
|
|
"no-duplicate-variable": true,
|
|
|
|
"no-inferrable-types": true,
|
:sparkles: Add Wufoo-Trigger node (#597)
* Generic functions, credentials, interface, logo, triggernode
* TSLint tabs rule, request error handling, webhook done
On hold until Wufoo responds with sandbox account
* Removed test logging, fixed various errors, cleaned up
* Sorted imports, adjusted data display, removed anys, tslint import sort rule
* RAAAAAW data
* :zap: Fix logo and improve formatting
* :zap: Improvements
* :zap: Minor improvements to WuFoo-Trigger
Co-authored-by: Rupenieks <ru@myos,co>
Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
2020-10-01 00:07:55 -07:00
|
|
|
"ordered-imports": [true, {
|
|
|
|
"import-sources-order": "any",
|
|
|
|
"named-imports-order": "case-insensitive"
|
|
|
|
}],
|
2019-06-23 03:35:23 -07:00
|
|
|
"no-namespace": [
|
|
|
|
true,
|
|
|
|
"allow-declarations"
|
|
|
|
],
|
|
|
|
"no-reference": true,
|
|
|
|
"no-string-throw": true,
|
|
|
|
"no-unused-expression": true,
|
|
|
|
"no-var-keyword": true,
|
|
|
|
"object-literal-shorthand": true,
|
|
|
|
"only-arrow-functions": [
|
|
|
|
true,
|
|
|
|
"allow-declarations",
|
|
|
|
"allow-named-functions"
|
|
|
|
],
|
|
|
|
"prefer-const": true,
|
|
|
|
"radix": true,
|
|
|
|
"semicolon": [
|
|
|
|
true,
|
|
|
|
"always",
|
|
|
|
"ignore-bound-class-methods"
|
|
|
|
],
|
|
|
|
"switch-default": true,
|
|
|
|
"triple-equals": [
|
|
|
|
true,
|
|
|
|
"allow-null-check"
|
|
|
|
],
|
|
|
|
"use-isnan": true,
|
|
|
|
"quotes": [
|
|
|
|
"error",
|
|
|
|
"single"
|
|
|
|
],
|
|
|
|
"variable-name": [
|
|
|
|
true,
|
|
|
|
"check-format",
|
|
|
|
"ban-keywords",
|
|
|
|
"allow-leading-underscore",
|
|
|
|
"allow-trailing-underscore"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"rulesDirectory": []
|
|
|
|
}
|