-
Notifications
You must be signed in to change notification settings - Fork 357
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(): install covalent tools as dependency (#1199)
* feat(): install covalent tools as dependency this is to leverage the global tslint and stylelint files across all our product portafolio * chore(): update to tools to beta.2
- Loading branch information
1 parent
1db63f6
commit 2c74ee6
Showing
5 changed files
with
26 additions
and
341 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,96 +1,3 @@ | ||
{ | ||
"plugins": [ | ||
"./tools/stylelint/selector-no-deprecated-deep/index.js" | ||
], | ||
"rules": { | ||
"td/selector-no-deprecated-deep": true, | ||
"color-hex-case": "lower", | ||
"color-no-invalid-hex": true, | ||
"function-calc-no-unspaced-operator": true, | ||
"function-comma-space-after": "always-single-line", | ||
"function-comma-space-before": "never", | ||
"function-name-case": "lower", | ||
"function-url-quotes": "always", | ||
"function-whitespace-after": "always", | ||
"number-leading-zero": "always", | ||
"number-no-trailing-zeros": true, | ||
"length-zero-no-unit": true, | ||
"string-no-newline": true, | ||
"string-quotes": "single", | ||
"unit-case": "lower", | ||
"unit-no-unknown": true, | ||
"unit-whitelist": [ | ||
"px", | ||
"%", | ||
"deg", | ||
"ms", | ||
"em", | ||
"vh", | ||
"vw", | ||
"vmin", | ||
"s", | ||
"rem" | ||
], | ||
"value-list-comma-space-after": "always-single-line", | ||
"value-list-comma-space-before": "never", | ||
"shorthand-property-no-redundant-values": true, | ||
"property-case": "lower", | ||
"property-no-unknown": true, | ||
"declaration-block-no-duplicate-properties": [ | ||
true, | ||
{ | ||
"ignore": [ | ||
"consecutive-duplicates-with-different-values" | ||
] | ||
} | ||
], | ||
"declaration-block-trailing-semicolon": "always", | ||
"declaration-block-single-line-max-declarations": 1, | ||
"declaration-block-semicolon-space-before": "never", | ||
"declaration-block-semicolon-space-after": "always-single-line", | ||
"declaration-block-semicolon-newline-before": "never-multi-line", | ||
"declaration-block-semicolon-newline-after": "always-multi-line", | ||
"declaration-property-value-blacklist": [ | ||
{ | ||
"/.*/": [ | ||
"initial" | ||
] | ||
}, | ||
{ | ||
"message": "The `initial` value is not supported in IE." | ||
} | ||
], | ||
"block-no-empty": true, | ||
"block-closing-brace-newline-after": "always", | ||
"block-closing-brace-newline-before": "always-multi-line", | ||
"block-opening-brace-newline-after": "always-multi-line", | ||
"block-opening-brace-space-before": "always-multi-line", | ||
"indentation": 2, | ||
"selector-attribute-brackets-space-inside": "never", | ||
"selector-attribute-operator-space-after": "never", | ||
"selector-attribute-operator-space-before": "never", | ||
"selector-combinator-space-after": "always", | ||
"selector-combinator-space-before": "always", | ||
"selector-pseudo-class-case": "lower", | ||
"selector-pseudo-class-parentheses-space-inside": "never", | ||
"selector-pseudo-class-no-unknown": true, | ||
"selector-pseudo-element-case": "lower", | ||
"selector-pseudo-element-colon-notation": "double", | ||
"selector-pseudo-element-no-unknown": [ | ||
true, { | ||
"ignorePseudoElements": [ | ||
"ng-deep" | ||
] | ||
} | ||
], | ||
"selector-type-case": "lower", | ||
"selector-max-id": 0, | ||
"no-missing-end-of-source-newline": true, | ||
"no-duplicate-selectors": true, | ||
"no-extra-semicolons": true, | ||
"no-invalid-double-slash-comments": true, | ||
"max-line-length": 120, | ||
"max-empty-lines": 1, | ||
"media-feature-name-no-unknown": true | ||
} | ||
"extends": "./node_modules/@covalent/tools/lint/stylelint/.stylelintrc.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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,211 +1,4 @@ | ||
{ | ||
"rulesDirectory": ["./node_modules/codelyzer"], | ||
"rules": { | ||
"align": [ | ||
true, | ||
"statements" | ||
], | ||
"array-type": [ | ||
true, | ||
"array" | ||
], | ||
"arrow-parens": true, | ||
"ban": [ | ||
true, | ||
[] | ||
], | ||
"class-name": true, | ||
"comment-format": [ | ||
true, | ||
"check-space" | ||
], | ||
"curly": true, | ||
"eofline": true, | ||
"forin": false, | ||
"indent": [ | ||
true, | ||
"spaces" | ||
], | ||
"interface-name": [ | ||
true, | ||
"always-prefix" | ||
], | ||
"import-blacklist": [ | ||
true, | ||
"@angular/cdk", | ||
"@angular/material", | ||
"@covalent/core" | ||
], | ||
"jsdoc-format": true, | ||
"label-position": true, | ||
"max-line-length": [true, 150], | ||
"member-access": [ | ||
false | ||
], | ||
"member-ordering": [ | ||
true, | ||
{ | ||
"order" : [ | ||
"private-static-field", | ||
"protected-static-field", | ||
"public-static-field", | ||
"private-instance-field", | ||
"protected-instance-field", | ||
"public-instance-field", | ||
"constructor", | ||
"public-static-method", | ||
"protected-static-method", | ||
"private-static-method", | ||
"public-instance-method", | ||
"protected-instance-method", | ||
"private-instance-method" | ||
] | ||
} | ||
], | ||
"new-parens": true, | ||
"no-angle-bracket-type-assertion": false, | ||
"no-any": false, | ||
"no-arg": true, | ||
"no-bitwise": true, | ||
"no-conditional-assignment": true, | ||
"no-consecutive-blank-lines": [true], | ||
"no-console": [ | ||
true, | ||
"assert", | ||
"count", | ||
"debug", | ||
"dir", | ||
"dirxml", | ||
"error", | ||
"group", | ||
"groupCollapsed", | ||
"groupEnd", | ||
"info", | ||
"log", | ||
"profile", | ||
"profileEnd", | ||
"table", | ||
"time", | ||
"timeEnd", | ||
"timeStamp", | ||
"trace", | ||
"warn" | ||
], | ||
"no-construct": true, | ||
"no-debugger": true, | ||
"no-default-export": true, | ||
"no-duplicate-variable": true, | ||
"no-empty": true, | ||
"no-empty-interface": false, | ||
"no-eval": true, | ||
"no-inferrable-types": [ | ||
false, | ||
"ignore-params" | ||
], | ||
"no-internal-module": true, | ||
"no-invalid-this": true, | ||
"no-magic-numbers": false, //TODO_LINT (we should lint for this) | ||
"no-namespace": true, | ||
"no-null-keyword": true, | ||
"no-reference": true, | ||
"no-require-imports": true, | ||
"no-shadowed-variable": true, | ||
"no-string-literal": true, | ||
"no-string-throw": true, | ||
"no-switch-case-fall-through": true, | ||
"no-trailing-whitespace": false, | ||
"no-unused-expression": true, | ||
"no-use-before-declare": true, | ||
"no-var-keyword": true, | ||
"no-var-requires": true, | ||
"object-literal-sort-keys": false, | ||
"one-line": [ | ||
true, | ||
"check-catch", | ||
"check-finally", | ||
"check-else", | ||
"check-open-brace", | ||
"check-whitespace" | ||
], | ||
"one-variable-per-declaration": true, | ||
"quotemark": [ | ||
true, | ||
"single", | ||
"avoid-escape" | ||
], | ||
"radix": true, | ||
"semicolon": [ | ||
true, | ||
"always" | ||
], | ||
"switch-default": true, | ||
"trailing-comma": [ | ||
true, | ||
{ | ||
"multiline": "always", | ||
"single": "always" | ||
} | ||
], | ||
"triple-equals": true, | ||
"typedef": [ | ||
true, | ||
"call-signature", | ||
"parameter", | ||
"arrow-parameter", | ||
"property-declaration", | ||
"variable-declaration", | ||
"member-variable-declaration" | ||
], | ||
"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" | ||
} | ||
], | ||
"use-isnan": true, | ||
"variable-name": [ | ||
true, | ||
"ban-keywords", | ||
"check-format", | ||
"allow-leading-underscore" | ||
], | ||
"whitespace": [ | ||
true, | ||
"check-branch", | ||
"check-decl", | ||
"check-operator", | ||
"check-module", | ||
"check-separator", | ||
"check-type" | ||
], | ||
// ANGULAR Rules | ||
"directive-selector": [false, "attribute", "td", "camelCase"], | ||
"component-selector": [false, "element", "td", "kebab-case"], | ||
"component-class-suffix": true, | ||
"directive-class-suffix": false, // Checked in PR's (different suffix for validators and so) | ||
"use-input-property-decorator": false, // Checked in PR's (mixins need a diff approach) | ||
"use-output-property-decorator": true, | ||
"use-host-property-decorator": true, | ||
"no-attribute-parameter-decorator": true, | ||
"no-input-rename": false, // so we can rename @Input so we can change API easier -> @Input('rename') name | ||
"no-output-rename": false, // same but for @Output | ||
"no-forward-ref" : false, | ||
"use-life-cycle-interface": true, | ||
"use-pipe-transform-interface": true, | ||
"pipe-naming": [ | ||
true, | ||
"camelCase" | ||
] | ||
} | ||
"extends": "./node_modules/@covalent/tools/lint/tslint/tslint.json" | ||
} |
Oops, something went wrong.