forked from NationalBankBelgium/stark
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(stark-build): tslintLoader - disable typecheck rules to remove w…
…arnings while typeCheck is false - update inline documentation - update documentation ISSUES CLOSED: #405
- Loading branch information
1 parent
7914fb0
commit 8e14f51
Showing
4 changed files
with
151 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
packages/stark-build/config/tslint-disabled-typecheck-rules.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
"extends": ["TSLINT_CONFIG_PLACEHOLDER"], | ||
"rules": { | ||
"no-unnecessary-type-assertion": false, | ||
"promise-function-async": false, | ||
"await-promise": false, | ||
"no-floating-promises": false, | ||
"no-for-in-array": false, | ||
"no-inferred-empty-object-type": false, | ||
"no-null-undefined-union": false, | ||
"no-restricted-globals": false, | ||
"no-unbound-method": false, | ||
"no-unsafe-any": false, | ||
"no-unused-variable": false, | ||
"no-use-before-declare": false, | ||
"no-void-expression": false, | ||
"restrict-plus-operands": false, | ||
"strict-boolean-expressions": false, | ||
"strict-type-predicates": false, | ||
"use-default-type-parameter": false, | ||
"deprecation": false, | ||
"prefer-readonly": false, | ||
"match-default-export-name": false, | ||
"no-boolean-literal-compare": false, | ||
"no-unnecessary-qualifier": false, | ||
"return-undefined": false, | ||
"unnecessary-bind": false, | ||
"arguments-order": false, | ||
"consecutive-overloads": false, | ||
"no-accessor-field-mismatch": false, | ||
"no-alphabetical-sort": false, | ||
"no-array-delete": false, | ||
"no-collection-size-mischeck": false, | ||
"no-dead-store": false, | ||
"no-element-overwrite": false, | ||
"no-empty-array": false, | ||
"no-gratuitous-expressions": false, | ||
"no-ignored-initial-value": false, | ||
"no-ignored-return": false, | ||
"no-in-misuse": false, | ||
"no-invalid-await": false, | ||
"no-misleading-array-reverse": false, | ||
"no-redundant-boolean": false, | ||
"no-return-type-any": false, | ||
"no-self-assignment": false, | ||
"no-try-promise": false, | ||
"no-undefined-argument": false, | ||
"no-unused-array": false, | ||
"no-use-of-empty-return-value": false, | ||
"no-useless-cast": false, | ||
"no-useless-intersection": false, | ||
"no-variable-usage-before-declaration": false, | ||
"parameters-max-number": false, | ||
"prefer-immediate-return": false, | ||
"use-type-alias": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters