@tylertech/stylelint-rules
Advanced tools
+75
| import postcssScss from "postcss-scss"; | ||
| export default { | ||
| extends: "stylelint-config-standard-scss", | ||
| customSyntax: postcssScss, | ||
| plugins: ["stylelint-scss"], | ||
| rules: { | ||
| "alpha-value-notation": null, | ||
| "at-rule-empty-line-before": null, | ||
| "at-rule-no-unknown": null, | ||
| "color-hex-length": null, | ||
| "color-no-invalid-hex": true, | ||
| "comment-no-empty": null, | ||
| "custom-property-empty-line-before": null, | ||
| "declaration-block-no-duplicate-properties": [true, { | ||
| "ignore": ["consecutive-duplicates-with-different-values"] | ||
| }], | ||
| "declaration-block-no-redundant-longhand-properties": null, | ||
| "declaration-block-no-shorthand-property-overrides": null, | ||
| "declaration-block-single-line-max-declarations": 1, | ||
| "declaration-empty-line-before": null, | ||
| "font-family-name-quotes": null, | ||
| "font-family-no-missing-generic-family-keyword": null, | ||
| "function-calc-no-unspaced-operator": true, | ||
| "function-name-case": "lower", | ||
| "function-no-unknown": null, | ||
| "function-url-quotes": "always", | ||
| "length-zero-no-unit": null, | ||
| "media-feature-range-notation": null, | ||
| "no-descending-specificity": null, | ||
| "no-duplicate-selectors": null, | ||
| "number-max-precision": null, | ||
| "property-no-vendor-prefix": null, | ||
| "rule-empty-line-before": null, | ||
| "selector-attribute-quotes": null, | ||
| "selector-class-pattern": null, | ||
| "selector-max-id": null, | ||
| "selector-not-notation": null, | ||
| "selector-pseudo-element-colon-notation": "double", | ||
| "selector-pseudo-element-no-unknown": [true, { | ||
| "ignorePseudoElements": ["/part/", "part"] | ||
| }], | ||
| "selector-type-case": "lower", | ||
| "shorthand-property-no-redundant-values": true, | ||
| "string-no-newline": true, | ||
| "selector-type-case": "lower", | ||
| "selector-max-id": null, | ||
| "value-keyword-case": null, | ||
| "scss/at-function-pattern": null, | ||
| "scss/at-if-no-null": null, | ||
| "scss/at-mixin-pattern": null, | ||
| "scss/comment-no-empty": null, | ||
| "scss/dollar-variable-empty-line-before": null, | ||
| "scss/dollar-variable-pattern": null, | ||
| "scss/double-slash-comment-empty-line-before": null, | ||
| "scss/operator-no-newline-after": null | ||
| } | ||
| }; |
| { | ||
| "extends": "./index.mjs", | ||
| "extends": "./index.js", | ||
| "rules": { | ||
@@ -4,0 +4,0 @@ "scss/at-mixin-argumentless-call-parentheses": null, |
+3
-2
| { | ||
| "name": "@tylertech/stylelint-rules", | ||
| "version": "5.0.0", | ||
| "version": "5.0.1", | ||
| "description": "Common stylelint rules for Tyler Technologies.", | ||
@@ -11,2 +11,3 @@ "author": "Tyler Technologies, Inc.", | ||
| }, | ||
| "type": "module", | ||
| "exports": "./index.js", | ||
@@ -17,3 +18,3 @@ "keywords": [ | ||
| "engines": { | ||
| "node": ">=18.12.0" | ||
| "node": ">=18" | ||
| }, | ||
@@ -20,0 +21,0 @@ "scripts": { |
-75
| import postcssScss from "postcss-scss"; | ||
| export default { | ||
| extends: "stylelint-config-standard-scss", | ||
| customSyntax: postcssScss, | ||
| plugins: ["stylelint-scss"], | ||
| rules: { | ||
| "alpha-value-notation": null, | ||
| "at-rule-empty-line-before": null, | ||
| "at-rule-no-unknown": null, | ||
| "color-hex-length": null, | ||
| "color-no-invalid-hex": true, | ||
| "comment-no-empty": null, | ||
| "custom-property-empty-line-before": null, | ||
| "declaration-block-no-duplicate-properties": [true, { | ||
| "ignore": ["consecutive-duplicates-with-different-values"] | ||
| }], | ||
| "declaration-block-no-redundant-longhand-properties": null, | ||
| "declaration-block-no-shorthand-property-overrides": null, | ||
| "declaration-block-single-line-max-declarations": 1, | ||
| "declaration-empty-line-before": null, | ||
| "font-family-name-quotes": null, | ||
| "font-family-no-missing-generic-family-keyword": null, | ||
| "function-calc-no-unspaced-operator": true, | ||
| "function-name-case": "lower", | ||
| "function-no-unknown": null, | ||
| "function-url-quotes": "always", | ||
| "length-zero-no-unit": null, | ||
| "media-feature-range-notation": null, | ||
| "no-descending-specificity": null, | ||
| "no-duplicate-selectors": null, | ||
| "number-max-precision": null, | ||
| "property-no-vendor-prefix": null, | ||
| "rule-empty-line-before": null, | ||
| "selector-attribute-quotes": null, | ||
| "selector-class-pattern": null, | ||
| "selector-max-id": null, | ||
| "selector-not-notation": null, | ||
| "selector-pseudo-element-colon-notation": "double", | ||
| "selector-pseudo-element-no-unknown": [true, { | ||
| "ignorePseudoElements": ["/part/", "part"] | ||
| }], | ||
| "selector-type-case": "lower", | ||
| "shorthand-property-no-redundant-values": true, | ||
| "string-no-newline": true, | ||
| "selector-type-case": "lower", | ||
| "selector-max-id": null, | ||
| "value-keyword-case": null, | ||
| "scss/at-function-pattern": null, | ||
| "scss/at-if-no-null": null, | ||
| "scss/at-mixin-pattern": null, | ||
| "scss/comment-no-empty": null, | ||
| "scss/dollar-variable-empty-line-before": null, | ||
| "scss/dollar-variable-pattern": null, | ||
| "scss/double-slash-comment-empty-line-before": null, | ||
| "scss/operator-no-newline-after": null | ||
| } | ||
| }; |
15301
0.09%Yes
NaN