@alexlit/lint-kit 183.5.0 → 183.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/packages/config-stylelint/node_modules/ansi-regex/index.d.ts +33 -0
- package/packages/config-stylelint/node_modules/ansi-regex/index.js +14 -0
- package/packages/config-stylelint/node_modules/ansi-regex/license +9 -0
- package/packages/config-stylelint/node_modules/ansi-regex/package.json +61 -0
- package/packages/config-stylelint/node_modules/ansi-regex/readme.md +66 -0
- package/packages/config-stylelint/node_modules/file-entry-cache/LICENSE +19 -0
- package/packages/config-stylelint/node_modules/file-entry-cache/README.md +630 -0
- package/packages/config-stylelint/node_modules/file-entry-cache/dist/index.cjs +559 -0
- package/packages/config-stylelint/node_modules/file-entry-cache/dist/index.d.cts +304 -0
- package/packages/config-stylelint/node_modules/file-entry-cache/dist/index.d.ts +304 -0
- package/packages/config-stylelint/node_modules/file-entry-cache/dist/index.js +525 -0
- package/packages/config-stylelint/node_modules/file-entry-cache/package.json +62 -0
- package/packages/config-stylelint/node_modules/flat-cache/LICENSE +19 -0
- package/packages/config-stylelint/node_modules/flat-cache/README.md +235 -0
- package/packages/config-stylelint/node_modules/flat-cache/dist/index.cjs +495 -0
- package/packages/config-stylelint/node_modules/flat-cache/dist/index.d.cts +255 -0
- package/packages/config-stylelint/node_modules/flat-cache/dist/index.d.ts +255 -0
- package/packages/config-stylelint/node_modules/flat-cache/dist/index.js +455 -0
- package/packages/config-stylelint/node_modules/flat-cache/package.json +81 -0
- package/packages/config-stylelint/node_modules/globby/ignore.js +337 -0
- package/packages/config-stylelint/node_modules/globby/index.d.ts +394 -0
- package/packages/config-stylelint/node_modules/globby/index.js +488 -0
- package/packages/config-stylelint/node_modules/globby/license +9 -0
- package/packages/config-stylelint/node_modules/globby/package.json +94 -0
- package/packages/config-stylelint/node_modules/globby/readme.md +388 -0
- package/packages/config-stylelint/node_modules/globby/utilities.js +382 -0
- package/packages/config-stylelint/node_modules/meow/build/dependencies.js +7347 -0
- package/packages/config-stylelint/node_modules/meow/build/index.d.ts +2684 -0
- package/packages/config-stylelint/node_modules/meow/build/index.js +185 -0
- package/packages/config-stylelint/node_modules/meow/build/licenses.md +1254 -0
- package/packages/config-stylelint/node_modules/meow/build/options.js +147 -0
- package/packages/config-stylelint/node_modules/meow/build/parser.js +113 -0
- package/packages/config-stylelint/node_modules/meow/build/utils.js +7 -0
- package/packages/config-stylelint/node_modules/meow/build/validate.js +145 -0
- package/packages/config-stylelint/node_modules/meow/license +9 -0
- package/packages/config-stylelint/node_modules/meow/package.json +103 -0
- package/packages/config-stylelint/node_modules/meow/readme.md +387 -0
- package/packages/config-stylelint/node_modules/postcss-safe-parser/LICENSE +20 -0
- package/packages/config-stylelint/node_modules/postcss-safe-parser/README.md +25 -0
- package/packages/config-stylelint/node_modules/postcss-safe-parser/lib/safe-parse.js +12 -0
- package/packages/config-stylelint/node_modules/postcss-safe-parser/lib/safe-parser.js +100 -0
- package/packages/config-stylelint/node_modules/postcss-safe-parser/package.json +36 -0
- package/packages/config-stylelint/node_modules/slash/index.d.ts +23 -0
- package/packages/config-stylelint/node_modules/slash/index.js +9 -0
- package/packages/config-stylelint/node_modules/slash/license +9 -0
- package/packages/config-stylelint/node_modules/slash/package.json +39 -0
- package/packages/config-stylelint/node_modules/slash/readme.md +36 -0
- package/packages/config-stylelint/node_modules/string-width/index.d.ts +39 -0
- package/packages/config-stylelint/node_modules/string-width/index.js +119 -0
- package/packages/config-stylelint/node_modules/string-width/license +9 -0
- package/packages/config-stylelint/node_modules/string-width/package.json +65 -0
- package/packages/config-stylelint/node_modules/string-width/readme.md +66 -0
- package/packages/config-stylelint/node_modules/strip-ansi/index.d.ts +15 -0
- package/packages/config-stylelint/node_modules/strip-ansi/index.js +19 -0
- package/packages/config-stylelint/node_modules/strip-ansi/license +9 -0
- package/packages/config-stylelint/node_modules/strip-ansi/package.json +59 -0
- package/packages/config-stylelint/node_modules/strip-ansi/readme.md +37 -0
- package/packages/config-stylelint/node_modules/stylelint/LICENSE +20 -0
- package/packages/config-stylelint/node_modules/stylelint/README.md +113 -0
- package/packages/config-stylelint/node_modules/stylelint/bin/stylelint.mjs +7 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/assignDisabledRanges.mjs +483 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/augmentConfig.mjs +586 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/cli.mjs +746 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/constants.mjs +25 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/createPartialStylelintResult.mjs +114 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/createPlugin.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/createStylelint.mjs +37 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/descriptionlessDisables.mjs +51 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/calcSeverityCounts.mjs +21 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/compactFormatter.mjs +23 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/index.mjs +23 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/jsonFormatter.mjs +10 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/preprocessWarnings.mjs +74 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/stringFormatter.mjs +308 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/tapFormatter.mjs +85 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/terminalLink.mjs +21 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/unixFormatter.mjs +32 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/verboseFormatter.mjs +175 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/getConfigForFile.mjs +110 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/getPostcssResult.mjs +131 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/index.mjs +38 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/invalidScopeDisables.mjs +41 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/isPathIgnored.mjs +48 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/lintPostcssResult.mjs +172 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/lintSource.mjs +135 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/needlessDisables.mjs +91 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/normalizeAllRuleSettings.mjs +29 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/normalizeRuleSettings.mjs +56 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/postcssPlugin.mjs +50 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/prepareReturnValue.mjs +63 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/printConfig.mjs +44 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/atKeywords.mjs +91 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/functions.mjs +100 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/keywords.mjs +663 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/mediaFeatures.mjs +115 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/mediaTypes.mjs +14 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/prefixes.mjs +17 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/properties.mjs +1111 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/selectors.mjs +472 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/units.mjs +82 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reportDisables.mjs +48 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reportUnknownRuleNames.mjs +76 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/resolveConfig.mjs +43 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/alpha-value-notation/index.mjs +207 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/annotation-no-unknown/index.mjs +88 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-allowed-list/index.mjs +62 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-descriptor-no-unknown/index.mjs +108 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-descriptor-value-no-unknown/index.mjs +64 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-disallowed-list/index.mjs +62 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-empty-line-before/index.mjs +178 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-no-deprecated/index.mjs +86 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-no-unknown/index.mjs +80 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-no-vendor-prefix/index.mjs +82 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-prelude-no-invalid/index.mjs +76 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-property-required-list/index.mjs +92 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/block-no-empty/index.mjs +116 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/block-no-redundant-nested-style-rules/index.mjs +52 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/color-function-alias-notation/index.mjs +87 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/color-function-notation/index.mjs +168 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/color-hex-alpha/index.mjs +75 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/color-hex-length/index.mjs +128 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/color-named/colordUtils.mjs +109 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/color-named/index.mjs +183 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/color-no-hex/index.mjs +69 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/color-no-invalid-hex/index.mjs +68 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/comment-empty-line-before/index.mjs +131 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/comment-no-empty/index.mjs +50 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/comment-pattern/index.mjs +51 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/comment-whitespace-inside/index.mjs +149 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/comment-word-disallowed-list/index.mjs +63 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/container-name-pattern/index.mjs +107 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/custom-media-pattern/index.mjs +61 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/custom-property-empty-line-before/index.mjs +156 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/custom-property-no-missing-var-function/index.mjs +148 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/custom-property-pattern/index.mjs +100 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-block-no-duplicate-custom-properties/index.mjs +82 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-block-no-duplicate-properties/index.mjs +301 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-block-no-redundant-longhand-properties/index.mjs +411 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-block-no-shorthand-property-overrides/index.mjs +74 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-block-single-line-max-declarations/index.mjs +62 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-empty-line-before/index.mjs +160 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-no-important/index.mjs +51 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-property-max-values/index.mjs +79 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-property-unit-allowed-list/index.mjs +108 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-property-unit-disallowed-list/index.mjs +94 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-property-value-allowed-list/index.mjs +66 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-property-value-disallowed-list/index.mjs +66 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-property-value-keyword-no-deprecated/index.mjs +207 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-property-value-no-unknown/index.mjs +466 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/display-notation/index.mjs +225 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/font-family-name-quotes/index.mjs +243 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/font-family-no-duplicate-names/index.mjs +122 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/font-family-no-missing-generic-family-keyword/index.mjs +122 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/font-weight-notation/index.mjs +221 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-allowed-list/index.mjs +114 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-calc-no-unspaced-operator/index.mjs +589 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-disallowed-list/index.mjs +73 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-linear-gradient-no-nonstandard-direction/index.mjs +145 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-name-case/index.mjs +120 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-no-unknown/index.mjs +83 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-url-no-scheme-relative/index.mjs +67 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-url-quotes/index.mjs +230 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-url-scheme-allowed-list/index.mjs +70 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-url-scheme-disallowed-list/index.mjs +70 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/hue-degree-notation/index.mjs +123 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/import-notation/index.mjs +104 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/index.mjs +180 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/keyframe-block-no-duplicate-selectors/index.mjs +68 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/keyframe-declaration-no-important/index.mjs +54 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/keyframe-selector-notation/index.mjs +202 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/keyframes-name-pattern/index.mjs +63 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/layer-name-pattern/index.mjs +91 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/length-zero-no-unit/index.mjs +221 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/lightness-notation/index.mjs +165 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/max-nesting-depth/index.mjs +195 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-feature-name-allowed-list/index.mjs +67 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-feature-name-disallowed-list/index.mjs +67 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-feature-name-no-unknown/index.mjs +79 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-feature-name-no-vendor-prefix/index.mjs +94 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-feature-name-unit-allowed-list/index.mjs +110 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-feature-name-value-allowed-list/index.mjs +100 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-feature-name-value-no-unknown/index.mjs +296 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-feature-range-notation/index.mjs +187 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-query-no-invalid/index.mjs +193 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-type-no-deprecated/index.mjs +82 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/named-grid-areas-no-invalid/index.mjs +117 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/named-grid-areas-no-invalid/utils/findNotContiguousOrRectangular.mjs +57 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/nesting-selector-no-missing-scoping-root/index.mjs +165 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-descending-specificity/index.mjs +200 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-duplicate-at-import-rules/index.mjs +156 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-duplicate-selectors/index.mjs +218 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-empty-source/index.mjs +61 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-invalid-double-slash-comments/index.mjs +77 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-invalid-position-at-import-rule/index.mjs +76 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-invalid-position-declaration/index.mjs +92 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-irregular-whitespace/index.mjs +236 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-unknown-animations/index.mjs +71 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-unknown-custom-media/index.mjs +77 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-unknown-custom-properties/index.mjs +72 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/number-max-precision/index.mjs +209 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/property-allowed-list/index.mjs +58 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/property-disallowed-list/index.mjs +58 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/property-no-deprecated/index.mjs +143 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/property-no-unknown/index.mjs +126 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/property-no-vendor-prefix/index.mjs +100 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/rule-empty-line-before/index.mjs +156 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/rule-nesting-at-rule-required-list/index.mjs +85 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/rule-selector-property-disallowed-list/index.mjs +119 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-anb-no-unmatchable/index.mjs +121 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-attribute-name-disallowed-list/index.mjs +69 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-attribute-operator-allowed-list/index.mjs +70 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-attribute-operator-disallowed-list/index.mjs +70 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-attribute-quotes/index.mjs +107 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-class-pattern/index.mjs +71 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-combinator-allowed-list/index.mjs +81 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-combinator-disallowed-list/index.mjs +81 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-disallowed-list/index.mjs +115 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-id-pattern/index.mjs +66 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-attribute/index.mjs +92 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-class/index.mjs +75 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-combinators/index.mjs +77 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-compound-selectors/index.mjs +123 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-id/index.mjs +107 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-pseudo-class/index.mjs +85 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-specificity/index.mjs +146 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-type/index.mjs +219 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-universal/index.mjs +95 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-nested-pattern/index.mjs +95 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-no-qualifying-type/index.mjs +323 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-no-vendor-prefix/index.mjs +92 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-not-notation/index.mjs +217 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-pseudo-class-allowed-list/index.mjs +84 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-pseudo-class-disallowed-list/index.mjs +84 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-pseudo-class-no-unknown/index.mjs +179 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-pseudo-element-allowed-list/index.mjs +75 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-pseudo-element-colon-notation/index.mjs +93 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-pseudo-element-disallowed-list/index.mjs +74 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-pseudo-element-no-unknown/index.mjs +91 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-type-case/index.mjs +118 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-type-no-unknown/index.mjs +148 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/shorthand-property-no-redundant-values/index.mjs +359 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/string-no-newline/index.mjs +120 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/syntax-string-no-invalid/index.mjs +80 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/time-min-milliseconds/index.mjs +167 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/unit-allowed-list/index.mjs +116 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/unit-disallowed-list/index.mjs +211 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/unit-no-unknown/index.mjs +207 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/value-keyword-case/index.mjs +253 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/value-no-vendor-prefix/index.mjs +92 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/standalone.mjs +383 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/timing.mjs +134 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/unscopedDisables.mjs +66 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/FileCache.mjs +115 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/addEmptyLineBefore.mjs +21 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/addSemicolonForEditInfo.mjs +35 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/appendRuleName.mjs +13 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/arrayEqual.mjs +14 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/beforeBlockString.mjs +28 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/blockString.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/blurInterpolation.mjs +8 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/cachedImport.mjs +68 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/checkAgainstRule.mjs +71 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/checkInvalidCLIOptions.mjs +105 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/configurationComment.mjs +74 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/containsString.mjs +52 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/createMapWithSet.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/dynamicImport.mjs +13 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/eachDeclarationBlock.mjs +59 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/eachNodeUpToRoot.mjs +22 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/emitWarning.mjs +84 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/errors.mjs +55 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/filterFilePaths.mjs +17 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/findAnimationName.mjs +74 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/findAtRuleContext.mjs +27 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/findFontFamily.mjs +148 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/findMediaFeatureNames.mjs +151 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/findNodeUpToRoot.mjs +25 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/fixEmptyLinesBefore.mjs +26 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/functionArgumentsSearch.mjs +65 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getAtRuleParams.mjs +7 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getDeclarationValue.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getDimension.mjs +62 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getFileIgnorer.mjs +41 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getFormatter.mjs +43 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getFormatterOptionsText.mjs +12 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getImportantPosition.mjs +15 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getLexer.mjs +39 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getModulePath.mjs +35 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getNextNonSharedLineCommentNode.mjs +34 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getPreviousNonSharedLineCommentNode.mjs +36 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getRelativePath.mjs +12 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getRuleSelector.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getSchemeFromUrl.mjs +36 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getSelectorSourceIndex.mjs +12 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getStrippedSelectorSource.mjs +47 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getStylelintRule.mjs +22 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/hasBlock.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/hasEmptyLine.mjs +13 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/hasInterpolation.mjs +24 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/hasLessInterpolation.mjs +11 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/hasPsvInterpolation.mjs +11 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/hasScssInterpolation.mjs +11 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/hasTplInterpolation.mjs +11 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/hash.mjs +10 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isAfterBlock.mjs +15 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isAfterComment.mjs +15 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isAfterSingleLineComment.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isAfterStandardPropertyDeclaration.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isAutoprefixable.mjs +364 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isBlocklessAtRuleAfterBlocklessAtRule.mjs +21 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isBlocklessAtRuleAfterSameNameBlocklessAtRule.mjs +21 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isContextFunctionalPseudoClass.mjs +24 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isCounterIncrementCustomIdentValue.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isCounterResetCustomIdentValue.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isCustomElement.mjs +34 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isCustomFunction.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isCustomMediaQuery.mjs +8 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isCustomProperty.mjs +8 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isCustomSelector.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isDescriptorDeclaration.mjs +22 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isFirstNested.mjs +83 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isFirstNodeOfRoot.mjs +17 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isHexColor.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isInDocument.mjs +32 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isKeyframeRule.mjs +17 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isKeyframeSelector.mjs +29 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isMathFunction.mjs +11 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isNonNegativeInteger.mjs +6 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isNumbery.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isOnlyWhitespace.mjs +17 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isPathNotFoundError.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isScssVariable.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isSharedLineComment.mjs +53 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isSingleLineString.mjs +10 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxAtRule.mjs +32 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxColorFunction.mjs +24 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxCombinator.mjs +32 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxComment.mjs +13 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxDeclaration.mjs +57 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxFunction.mjs +28 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxHexColor.mjs +14 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxKeyframesName.mjs +15 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxProperty.mjs +32 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxRule.mjs +24 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxSelector.mjs +56 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxTypeSelector.mjs +56 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxUrl.mjs +49 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxValue.mjs +51 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isUnicodeRangeDescriptor.mjs +24 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isUnicodeSupported.mjs +26 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isUrlFunction.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isValidFontSize.mjs +38 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isValidHex.mjs +11 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isValidIdentifier.mjs +39 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isVarFunction.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isVariable.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isWhitespace.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/matchesStringOrRegExp.mjs +97 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/mergeSyntaxDefinitions.mjs +137 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/narrowFixRange.mjs +68 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/nodeContextLookup.mjs +41 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/nodeFieldIndices.mjs +119 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/normalizeFilePath.mjs +26 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/normalizeFixMode.mjs +22 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/normalizeSelector.mjs +231 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/optionsMatches.mjs +20 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/optionsMatchesEntry.mjs +29 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/parseCustomMediaQuery.mjs +15 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/parseMediaQuery.mjs +15 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/parseSelector.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/pathExists.mjs +16 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/pluralize.mjs +10 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/putIfAbsent.mjs +20 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/rangesOverlap.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/rawNodeString.mjs +29 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/regexes.mjs +135 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/removeEmptyLinesBefore.mjs +13 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/report.mjs +321 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/reportCommentProblem.mjs +39 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/resolveFilePath.mjs +38 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/resolveNestedSelectorsForRule.mjs +108 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/resolveOptionValue.mjs +30 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/resolveSilent.mjs +144 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/ruleMessages.mjs +18 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/setAtRuleParams.mjs +18 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/setDeclarationValue.mjs +18 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/suppressionsService.mjs +317 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/toPath.mjs +23 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/typeGuards.mjs +90 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/uniteSets.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/validateObjectWithArrayProps.mjs +29 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/validateObjectWithProps.mjs +28 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/validateOptions.mjs +176 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/validateTypes.mjs +148 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/vendor.mjs +43 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/validateDisableSettings.mjs +67 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/writeOutputFile.mjs +15 -0
- package/packages/config-stylelint/node_modules/stylelint/package.json +211 -0
- package/packages/config-stylelint/node_modules/stylelint/types/stylelint/index.d.ts +1594 -0
- package/packages/config-stylelint/node_modules/unicorn-magic/default.d.ts +13 -0
- package/packages/config-stylelint/node_modules/unicorn-magic/default.js +14 -0
- package/packages/config-stylelint/node_modules/unicorn-magic/license +9 -0
- package/packages/config-stylelint/node_modules/unicorn-magic/node.d.ts +125 -0
- package/packages/config-stylelint/node_modules/unicorn-magic/node.js +49 -0
- package/packages/config-stylelint/node_modules/unicorn-magic/package.json +68 -0
- package/packages/config-stylelint/node_modules/unicorn-magic/readme.md +31 -0
- package/packages/config-stylelint/package.json +2 -2
|
@@ -0,0 +1,411 @@
|
|
|
1
|
+
import valueParser from 'postcss-value-parser';
|
|
2
|
+
|
|
3
|
+
import { isRegExp, isString } from '../../utils/validateTypes.mjs';
|
|
4
|
+
import arrayEqual from '../../utils/arrayEqual.mjs';
|
|
5
|
+
import { basicKeywords } from '../../reference/keywords.mjs';
|
|
6
|
+
import eachDeclarationBlock from '../../utils/eachDeclarationBlock.mjs';
|
|
7
|
+
import { longhandSubPropertiesOfShorthandProperties } from '../../reference/properties.mjs';
|
|
8
|
+
import optionsMatches from '../../utils/optionsMatches.mjs';
|
|
9
|
+
import report from '../../utils/report.mjs';
|
|
10
|
+
import ruleMessages from '../../utils/ruleMessages.mjs';
|
|
11
|
+
import validateOptions from '../../utils/validateOptions.mjs';
|
|
12
|
+
import vendor from '../../utils/vendor.mjs';
|
|
13
|
+
|
|
14
|
+
const ruleName = 'declaration-block-no-redundant-longhand-properties';
|
|
15
|
+
|
|
16
|
+
const messages = ruleMessages(ruleName, {
|
|
17
|
+
expected: (property) => `Expected shorthand property "${property}"`,
|
|
18
|
+
unexpectedLonghand: (longhand, shorthand) =>
|
|
19
|
+
`Unexpected longhand property "${longhand}" after shorthand property "${shorthand}" with same value`,
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
const meta = {
|
|
23
|
+
url: 'https://stylelint.io/user-guide/rules/declaration-block-no-redundant-longhand-properties',
|
|
24
|
+
fixable: true,
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
/** @typedef {import('postcss').Declaration} Declaration */
|
|
28
|
+
|
|
29
|
+
/** @type {Map<string, (decls: Map<string, Declaration>) => (string | undefined)>} */
|
|
30
|
+
const customResolvers = new Map([
|
|
31
|
+
[
|
|
32
|
+
'font-synthesis',
|
|
33
|
+
(decls) => {
|
|
34
|
+
const weight = decls.get('font-synthesis-weight')?.value.trim();
|
|
35
|
+
const style = decls.get('font-synthesis-style')?.value.trim();
|
|
36
|
+
const smallCaps = decls.get('font-synthesis-small-caps')?.value.trim();
|
|
37
|
+
|
|
38
|
+
/** @type {(s: string | undefined) => boolean} */
|
|
39
|
+
const isValidFontSynthesisValue = (s) => s === 'none' || s === 'auto';
|
|
40
|
+
|
|
41
|
+
if (
|
|
42
|
+
!isValidFontSynthesisValue(weight) ||
|
|
43
|
+
!isValidFontSynthesisValue(style) ||
|
|
44
|
+
!isValidFontSynthesisValue(smallCaps)
|
|
45
|
+
) {
|
|
46
|
+
return;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
const autoShorthands = [];
|
|
50
|
+
|
|
51
|
+
if (weight === 'auto') {
|
|
52
|
+
autoShorthands.push('weight');
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
if (style === 'auto') {
|
|
56
|
+
autoShorthands.push('style');
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
if (smallCaps === 'auto') {
|
|
60
|
+
autoShorthands.push('small-caps');
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
if (autoShorthands.length === 0) return 'none';
|
|
64
|
+
|
|
65
|
+
return autoShorthands.join(' ');
|
|
66
|
+
},
|
|
67
|
+
],
|
|
68
|
+
[
|
|
69
|
+
'grid-column',
|
|
70
|
+
(decls) => {
|
|
71
|
+
const start = decls.get('grid-column-start')?.value.trim();
|
|
72
|
+
const end = decls.get('grid-column-end')?.value.trim();
|
|
73
|
+
|
|
74
|
+
if (!start || !end) return;
|
|
75
|
+
|
|
76
|
+
return `${start} / ${end}`;
|
|
77
|
+
},
|
|
78
|
+
],
|
|
79
|
+
[
|
|
80
|
+
'grid-row',
|
|
81
|
+
(decls) => {
|
|
82
|
+
const start = decls.get('grid-row-start')?.value.trim();
|
|
83
|
+
const end = decls.get('grid-row-end')?.value.trim();
|
|
84
|
+
|
|
85
|
+
if (!start || !end) return;
|
|
86
|
+
|
|
87
|
+
return `${start} / ${end}`;
|
|
88
|
+
},
|
|
89
|
+
],
|
|
90
|
+
[
|
|
91
|
+
'grid-template',
|
|
92
|
+
(decls) => {
|
|
93
|
+
const areas = decls.get('grid-template-areas')?.value.trim();
|
|
94
|
+
const columns = decls.get('grid-template-columns')?.value.trim();
|
|
95
|
+
const rows = decls.get('grid-template-rows')?.value.trim();
|
|
96
|
+
|
|
97
|
+
if (!(areas && columns && rows)) return;
|
|
98
|
+
|
|
99
|
+
// repeat() is not allowed inside track listings for grid-template.
|
|
100
|
+
// related issue: https://github.com/stylelint/stylelint/issues/7228
|
|
101
|
+
// spec ref: https://drafts.csswg.org/css-grid/#explicit-grid-shorthand
|
|
102
|
+
|
|
103
|
+
if (columns.includes('repeat(') || rows.includes('repeat(')) return;
|
|
104
|
+
|
|
105
|
+
const splitAreas = [...areas.matchAll(/"[^"]+"/g)].map((x) => x[0]);
|
|
106
|
+
const splitRows = rows.split(' ');
|
|
107
|
+
|
|
108
|
+
if (splitAreas.length === 0 || splitRows.length === 0) return;
|
|
109
|
+
|
|
110
|
+
if (splitAreas.length !== splitRows.length) return;
|
|
111
|
+
|
|
112
|
+
const zipped = splitAreas.map((area, i) => `${area} ${splitRows[i]}`).join(' ');
|
|
113
|
+
|
|
114
|
+
return `${zipped} / ${columns}`;
|
|
115
|
+
},
|
|
116
|
+
],
|
|
117
|
+
[
|
|
118
|
+
'transition',
|
|
119
|
+
(decls) => {
|
|
120
|
+
/** @type {(input: string | undefined) => string[]} */
|
|
121
|
+
const commaSeparated = (input = '') => {
|
|
122
|
+
const trimmedInput = input.trim();
|
|
123
|
+
|
|
124
|
+
if (!trimmedInput) return [];
|
|
125
|
+
|
|
126
|
+
if (trimmedInput.indexOf(',') === -1) return [trimmedInput];
|
|
127
|
+
|
|
128
|
+
/** @type {import('postcss-value-parser').ParsedValue} */
|
|
129
|
+
const parsedValue = valueParser(trimmedInput);
|
|
130
|
+
/** @type {Array<Array<import('postcss-value-parser').Node>>} */
|
|
131
|
+
const valueParts = [];
|
|
132
|
+
|
|
133
|
+
{
|
|
134
|
+
/** @type {Array<import('postcss-value-parser').Node>} */
|
|
135
|
+
let currentListItem = [];
|
|
136
|
+
|
|
137
|
+
parsedValue.nodes.forEach((node) => {
|
|
138
|
+
if (node.type === 'div' && node.value === ',') {
|
|
139
|
+
valueParts.push(currentListItem);
|
|
140
|
+
currentListItem = [];
|
|
141
|
+
|
|
142
|
+
return;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
currentListItem.push(node);
|
|
146
|
+
});
|
|
147
|
+
|
|
148
|
+
valueParts.push(currentListItem);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
return valueParts.map((s) => valueParser.stringify(s).trim()).filter((s) => s.length > 0);
|
|
152
|
+
};
|
|
153
|
+
|
|
154
|
+
const delays = commaSeparated(decls.get('transition-delay')?.value);
|
|
155
|
+
const durations = commaSeparated(decls.get('transition-duration')?.value);
|
|
156
|
+
const timingFunctions = commaSeparated(decls.get('transition-timing-function')?.value);
|
|
157
|
+
const properties = commaSeparated(decls.get('transition-property')?.value);
|
|
158
|
+
|
|
159
|
+
if (!(delays.length && durations.length && timingFunctions.length && properties.length)) {
|
|
160
|
+
return;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
// transition-property is the canonical list of the number of properties;
|
|
164
|
+
// see spec: https://w3c.github.io/csswg-drafts/css-transitions/#transition-property-property
|
|
165
|
+
// if there are more transition-properties than duration/delay/timings,
|
|
166
|
+
// the other properties are computed cyclically -- ex with %
|
|
167
|
+
// see spec example #3: https://w3c.github.io/csswg-drafts/css-transitions/#example-d94cbd75
|
|
168
|
+
return properties
|
|
169
|
+
.map((property, i) => {
|
|
170
|
+
return [
|
|
171
|
+
property,
|
|
172
|
+
durations[i % durations.length],
|
|
173
|
+
timingFunctions[i % timingFunctions.length],
|
|
174
|
+
delays[i % delays.length],
|
|
175
|
+
]
|
|
176
|
+
.filter(isString)
|
|
177
|
+
.join(' ');
|
|
178
|
+
})
|
|
179
|
+
.join(', ');
|
|
180
|
+
},
|
|
181
|
+
],
|
|
182
|
+
]);
|
|
183
|
+
|
|
184
|
+
const haveConflicts = [
|
|
185
|
+
'border-width',
|
|
186
|
+
'border-style',
|
|
187
|
+
'border-color',
|
|
188
|
+
'border-top',
|
|
189
|
+
'border-right',
|
|
190
|
+
'border-bottom',
|
|
191
|
+
'border-left',
|
|
192
|
+
'grid-column',
|
|
193
|
+
'grid-row',
|
|
194
|
+
];
|
|
195
|
+
|
|
196
|
+
/**
|
|
197
|
+
* @param {string} prefixedShorthandProperty
|
|
198
|
+
* @param {string[]} prefixedShorthandData
|
|
199
|
+
* @param {Map<string, Declaration>} transformedDeclarationNodes
|
|
200
|
+
* @returns {string | undefined}
|
|
201
|
+
*/
|
|
202
|
+
const resolveShorthandValue = (
|
|
203
|
+
prefixedShorthandProperty,
|
|
204
|
+
prefixedShorthandData,
|
|
205
|
+
transformedDeclarationNodes,
|
|
206
|
+
) => {
|
|
207
|
+
const resolver = customResolvers.get(prefixedShorthandProperty);
|
|
208
|
+
|
|
209
|
+
if (resolver === undefined) {
|
|
210
|
+
// the "default" resolver: sort the longhand values in the order
|
|
211
|
+
// of their properties
|
|
212
|
+
const values = prefixedShorthandData
|
|
213
|
+
.map((p) => transformedDeclarationNodes.get(p)?.value.trim())
|
|
214
|
+
.filter(Boolean);
|
|
215
|
+
|
|
216
|
+
return values.length > 0 ? values.join(' ') : undefined;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
return resolver(transformedDeclarationNodes);
|
|
220
|
+
};
|
|
221
|
+
|
|
222
|
+
/** @type {import('stylelint').CoreRules[ruleName]} */
|
|
223
|
+
const rule = (primary, secondaryOptions) => {
|
|
224
|
+
return (root, result) => {
|
|
225
|
+
const validOptions = validateOptions(
|
|
226
|
+
result,
|
|
227
|
+
ruleName,
|
|
228
|
+
{ actual: primary },
|
|
229
|
+
{
|
|
230
|
+
actual: secondaryOptions,
|
|
231
|
+
possible: {
|
|
232
|
+
ignoreShorthands: [isString, isRegExp],
|
|
233
|
+
ignoreLonghands: [isString],
|
|
234
|
+
},
|
|
235
|
+
optional: true,
|
|
236
|
+
},
|
|
237
|
+
);
|
|
238
|
+
|
|
239
|
+
if (!validOptions) {
|
|
240
|
+
return;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
/** @type {Map<string, import('stylelint').ShorthandProperties[]>} */
|
|
244
|
+
const longhandToShorthands = new Map();
|
|
245
|
+
const ignoreLonghands = [secondaryOptions?.ignoreLonghands ?? []].flat();
|
|
246
|
+
|
|
247
|
+
for (const [shorthand, longhandProps] of longhandSubPropertiesOfShorthandProperties.entries()) {
|
|
248
|
+
if (optionsMatches(secondaryOptions, 'ignoreShorthands', shorthand)) {
|
|
249
|
+
continue;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
for (const longhand of longhandProps) {
|
|
253
|
+
if (ignoreLonghands.includes(longhand)) continue;
|
|
254
|
+
|
|
255
|
+
const shorthands = longhandToShorthands.get(longhand) || [];
|
|
256
|
+
|
|
257
|
+
shorthands.push(shorthand);
|
|
258
|
+
longhandToShorthands.set(longhand, shorthands);
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
eachDeclarationBlock(root, (eachDecl) => {
|
|
263
|
+
/** @type {Map<string, string[]>} */
|
|
264
|
+
const longhandDeclarations = new Map();
|
|
265
|
+
/** @type {Map<string, Declaration[]>} */
|
|
266
|
+
const longhandDeclarationNodes = new Map();
|
|
267
|
+
/** @type {Map<string, string>} */
|
|
268
|
+
const declaredShorthands = new Map();
|
|
269
|
+
|
|
270
|
+
eachDecl((decl) => {
|
|
271
|
+
const declValue = decl.value.trim();
|
|
272
|
+
|
|
273
|
+
// basic keywords are not allowed in shorthand properties
|
|
274
|
+
if (basicKeywords.has(decl.value)) {
|
|
275
|
+
return;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
const prop = decl.prop.toLowerCase();
|
|
279
|
+
const unprefixedProp = vendor.unprefixed(prop);
|
|
280
|
+
const prefix = vendor.prefix(prop);
|
|
281
|
+
|
|
282
|
+
if (
|
|
283
|
+
longhandSubPropertiesOfShorthandProperties.has(
|
|
284
|
+
/** @type {import('stylelint').ShorthandProperties} */ (unprefixedProp),
|
|
285
|
+
)
|
|
286
|
+
) {
|
|
287
|
+
declaredShorthands.set(prop, declValue);
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
const shorthandProperties = longhandToShorthands.get(unprefixedProp);
|
|
291
|
+
|
|
292
|
+
if (!shorthandProperties) {
|
|
293
|
+
return;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
for (const shorthandProperty of shorthandProperties) {
|
|
297
|
+
const prefixedShorthandProperty = prefix + shorthandProperty;
|
|
298
|
+
const shorthandValue = declaredShorthands.get(prefixedShorthandProperty);
|
|
299
|
+
|
|
300
|
+
if (shorthandValue === declValue) {
|
|
301
|
+
const fix = () => {
|
|
302
|
+
decl.remove();
|
|
303
|
+
};
|
|
304
|
+
|
|
305
|
+
report({
|
|
306
|
+
ruleName,
|
|
307
|
+
result,
|
|
308
|
+
node: decl,
|
|
309
|
+
word: decl.prop,
|
|
310
|
+
message: messages.unexpectedLonghand,
|
|
311
|
+
messageArgs: [decl.prop, prefixedShorthandProperty],
|
|
312
|
+
fix: {
|
|
313
|
+
apply: fix,
|
|
314
|
+
node: decl.parent,
|
|
315
|
+
},
|
|
316
|
+
});
|
|
317
|
+
|
|
318
|
+
return;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
const longhandDeclaration = longhandDeclarations.get(prefixedShorthandProperty) || [];
|
|
322
|
+
const longhandDeclarationNode =
|
|
323
|
+
longhandDeclarationNodes.get(prefixedShorthandProperty) || [];
|
|
324
|
+
|
|
325
|
+
longhandDeclaration.push(prop);
|
|
326
|
+
longhandDeclarations.set(prefixedShorthandProperty, longhandDeclaration);
|
|
327
|
+
|
|
328
|
+
longhandDeclarationNode.push(decl);
|
|
329
|
+
longhandDeclarationNodes.set(prefixedShorthandProperty, longhandDeclarationNode);
|
|
330
|
+
|
|
331
|
+
const shorthandProps = new Set(
|
|
332
|
+
longhandSubPropertiesOfShorthandProperties.get(shorthandProperty),
|
|
333
|
+
);
|
|
334
|
+
|
|
335
|
+
ignoreLonghands.forEach((value) => shorthandProps.delete(value));
|
|
336
|
+
const prefixedShorthandData = Array.from(shorthandProps, (item) => prefix + item);
|
|
337
|
+
|
|
338
|
+
if (!arrayEqual(prefixedShorthandData.toSorted(), longhandDeclaration.toSorted())) {
|
|
339
|
+
continue;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
const declNodes = longhandDeclarationNodes.get(prefixedShorthandProperty) || [];
|
|
343
|
+
|
|
344
|
+
const importantDeclNodesCount = declNodes.reduce(
|
|
345
|
+
(count, declNode) => (declNode.important ? count + 1 : count),
|
|
346
|
+
0,
|
|
347
|
+
);
|
|
348
|
+
|
|
349
|
+
if (importantDeclNodesCount && importantDeclNodesCount !== declNodes.length) {
|
|
350
|
+
continue;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
const [firstDeclNode] = declNodes;
|
|
354
|
+
let resolvedShorthandValue = undefined;
|
|
355
|
+
|
|
356
|
+
if (firstDeclNode) {
|
|
357
|
+
const transformedDeclarationNodes = new Map(
|
|
358
|
+
declNodes.map((d) => [d.prop.toLowerCase(), d]),
|
|
359
|
+
);
|
|
360
|
+
|
|
361
|
+
resolvedShorthandValue = resolveShorthandValue(
|
|
362
|
+
prefixedShorthandProperty,
|
|
363
|
+
prefixedShorthandData,
|
|
364
|
+
transformedDeclarationNodes,
|
|
365
|
+
);
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
const hasFix = firstDeclNode && resolvedShorthandValue;
|
|
369
|
+
const fix = hasFix
|
|
370
|
+
? () => {
|
|
371
|
+
const newShorthandDeclarationNode = firstDeclNode.clone({
|
|
372
|
+
prop: prefixedShorthandProperty,
|
|
373
|
+
value: resolvedShorthandValue,
|
|
374
|
+
});
|
|
375
|
+
|
|
376
|
+
firstDeclNode.replaceWith(newShorthandDeclarationNode);
|
|
377
|
+
declNodes.forEach((node) => node.remove());
|
|
378
|
+
|
|
379
|
+
if (haveConflicts.includes(shorthandProperty)) {
|
|
380
|
+
longhandDeclarations.forEach((longhands, shorthand) => {
|
|
381
|
+
longhandDeclarations.set(
|
|
382
|
+
shorthand,
|
|
383
|
+
longhands.filter((longhand) => !longhandDeclaration.includes(longhand)),
|
|
384
|
+
);
|
|
385
|
+
});
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
: undefined;
|
|
389
|
+
|
|
390
|
+
report({
|
|
391
|
+
ruleName,
|
|
392
|
+
result,
|
|
393
|
+
node: decl,
|
|
394
|
+
word: decl.prop,
|
|
395
|
+
message: messages.expected,
|
|
396
|
+
messageArgs: [prefixedShorthandProperty],
|
|
397
|
+
fix: {
|
|
398
|
+
apply: fix,
|
|
399
|
+
node: decl.parent,
|
|
400
|
+
},
|
|
401
|
+
});
|
|
402
|
+
}
|
|
403
|
+
});
|
|
404
|
+
});
|
|
405
|
+
};
|
|
406
|
+
};
|
|
407
|
+
|
|
408
|
+
rule.ruleName = ruleName;
|
|
409
|
+
rule.messages = messages;
|
|
410
|
+
rule.meta = meta;
|
|
411
|
+
export default rule;
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import eachDeclarationBlock from '../../utils/eachDeclarationBlock.mjs';
|
|
2
|
+
import report from '../../utils/report.mjs';
|
|
3
|
+
import ruleMessages from '../../utils/ruleMessages.mjs';
|
|
4
|
+
import uniteSets from '../../utils/uniteSets.mjs';
|
|
5
|
+
import validateOptions from '../../utils/validateOptions.mjs';
|
|
6
|
+
import vendor from '../../utils/vendor.mjs';
|
|
7
|
+
|
|
8
|
+
import {
|
|
9
|
+
longhandSubPropertiesOfShorthandProperties,
|
|
10
|
+
shorthandToResetToInitialProperty,
|
|
11
|
+
} from '../../reference/properties.mjs';
|
|
12
|
+
|
|
13
|
+
const ruleName = 'declaration-block-no-shorthand-property-overrides';
|
|
14
|
+
|
|
15
|
+
const messages = ruleMessages(ruleName, {
|
|
16
|
+
rejected: (shorthand, original) => `Unexpected shorthand "${shorthand}" after "${original}"`,
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
const meta = {
|
|
20
|
+
url: 'https://stylelint.io/user-guide/rules/declaration-block-no-shorthand-property-overrides',
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
/** @type {import('stylelint').CoreRules[ruleName]} */
|
|
24
|
+
const rule = (primary) => {
|
|
25
|
+
return (root, result) => {
|
|
26
|
+
const validOptions = validateOptions(result, ruleName, { actual: primary });
|
|
27
|
+
|
|
28
|
+
if (!validOptions) {
|
|
29
|
+
return;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
eachDeclarationBlock(root, (eachDecl) => {
|
|
33
|
+
/** @type {Map<string, string>} */
|
|
34
|
+
const declarations = new Map();
|
|
35
|
+
|
|
36
|
+
eachDecl((decl) => {
|
|
37
|
+
const prop = decl.prop;
|
|
38
|
+
const unprefixedProp = vendor.unprefixed(prop).toLowerCase();
|
|
39
|
+
const prefix = vendor.prefix(prop).toLowerCase();
|
|
40
|
+
const subProperties = /** @type {Map<string, Set<string>>} */ (
|
|
41
|
+
longhandSubPropertiesOfShorthandProperties
|
|
42
|
+
).get(unprefixedProp);
|
|
43
|
+
const resettables = shorthandToResetToInitialProperty.get(unprefixedProp);
|
|
44
|
+
const union = uniteSets(subProperties ?? [], resettables ?? []);
|
|
45
|
+
|
|
46
|
+
declarations.set(prop.toLowerCase(), prop);
|
|
47
|
+
|
|
48
|
+
if (union.size === 0) return;
|
|
49
|
+
|
|
50
|
+
for (const property of union) {
|
|
51
|
+
const declaration = declarations.get(prefix + property);
|
|
52
|
+
|
|
53
|
+
if (!declaration) {
|
|
54
|
+
continue;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
report({
|
|
58
|
+
ruleName,
|
|
59
|
+
result,
|
|
60
|
+
node: decl,
|
|
61
|
+
message: messages.rejected,
|
|
62
|
+
messageArgs: [prop, declaration || ''],
|
|
63
|
+
word: prop,
|
|
64
|
+
});
|
|
65
|
+
}
|
|
66
|
+
});
|
|
67
|
+
});
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
rule.ruleName = ruleName;
|
|
72
|
+
rule.messages = messages;
|
|
73
|
+
rule.meta = meta;
|
|
74
|
+
export default rule;
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import blockString from '../../utils/blockString.mjs';
|
|
2
|
+
import { isNumber } from '../../utils/validateTypes.mjs';
|
|
3
|
+
import isSingleLineString from '../../utils/isSingleLineString.mjs';
|
|
4
|
+
import report from '../../utils/report.mjs';
|
|
5
|
+
import ruleMessages from '../../utils/ruleMessages.mjs';
|
|
6
|
+
import validateOptions from '../../utils/validateOptions.mjs';
|
|
7
|
+
|
|
8
|
+
const ruleName = 'declaration-block-single-line-max-declarations';
|
|
9
|
+
|
|
10
|
+
const messages = ruleMessages(ruleName, {
|
|
11
|
+
expected: (max) => `Expected no more than ${max} ${max === 1 ? 'declaration' : 'declarations'}`,
|
|
12
|
+
});
|
|
13
|
+
|
|
14
|
+
const meta = {
|
|
15
|
+
url: 'https://stylelint.io/user-guide/rules/declaration-block-single-line-max-declarations',
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
/** @type {import('stylelint').CoreRules[ruleName]} */
|
|
19
|
+
const rule = (primary) => {
|
|
20
|
+
return (root, result) => {
|
|
21
|
+
const validOptions = validateOptions(result, ruleName, {
|
|
22
|
+
actual: primary,
|
|
23
|
+
possible: [isNumber],
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
if (!validOptions) {
|
|
27
|
+
return;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
root.walkRules((ruleNode) => {
|
|
31
|
+
const block = blockString(ruleNode);
|
|
32
|
+
|
|
33
|
+
if (!isSingleLineString(block)) {
|
|
34
|
+
return;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
if (!ruleNode.nodes) {
|
|
38
|
+
return;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
const decls = ruleNode.nodes.filter((node) => node.type === 'decl');
|
|
42
|
+
|
|
43
|
+
if (decls.length <= primary) {
|
|
44
|
+
return;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
report({
|
|
48
|
+
message: messages.expected,
|
|
49
|
+
messageArgs: [primary],
|
|
50
|
+
node: ruleNode,
|
|
51
|
+
word: block,
|
|
52
|
+
result,
|
|
53
|
+
ruleName,
|
|
54
|
+
});
|
|
55
|
+
});
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
rule.ruleName = ruleName;
|
|
60
|
+
rule.messages = messages;
|
|
61
|
+
rule.meta = meta;
|
|
62
|
+
export default rule;
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
import { isAtRule, isRoot, isRule } from '../../utils/typeGuards.mjs';
|
|
2
|
+
import blockString from '../../utils/blockString.mjs';
|
|
3
|
+
import fixEmptyLinesBefore from '../../utils/fixEmptyLinesBefore.mjs';
|
|
4
|
+
import hasEmptyLine from '../../utils/hasEmptyLine.mjs';
|
|
5
|
+
import isAfterBlock from '../../utils/isAfterBlock.mjs';
|
|
6
|
+
import isAfterComment from '../../utils/isAfterComment.mjs';
|
|
7
|
+
import isAfterStandardPropertyDeclaration from '../../utils/isAfterStandardPropertyDeclaration.mjs';
|
|
8
|
+
import isCustomProperty from '../../utils/isCustomProperty.mjs';
|
|
9
|
+
import isFirstNested from '../../utils/isFirstNested.mjs';
|
|
10
|
+
import isFirstNodeOfRoot from '../../utils/isFirstNodeOfRoot.mjs';
|
|
11
|
+
import isSingleLineString from '../../utils/isSingleLineString.mjs';
|
|
12
|
+
import isStandardSyntaxDeclaration from '../../utils/isStandardSyntaxDeclaration.mjs';
|
|
13
|
+
import optionsMatches from '../../utils/optionsMatches.mjs';
|
|
14
|
+
import report from '../../utils/report.mjs';
|
|
15
|
+
import ruleMessages from '../../utils/ruleMessages.mjs';
|
|
16
|
+
import validateOptions from '../../utils/validateOptions.mjs';
|
|
17
|
+
|
|
18
|
+
const ruleName = 'declaration-empty-line-before';
|
|
19
|
+
|
|
20
|
+
const messages = ruleMessages(ruleName, {
|
|
21
|
+
expected: 'Expected empty line before declaration',
|
|
22
|
+
rejected: 'Unexpected empty line before declaration',
|
|
23
|
+
});
|
|
24
|
+
|
|
25
|
+
const meta = {
|
|
26
|
+
url: 'https://stylelint.io/user-guide/rules/declaration-empty-line-before',
|
|
27
|
+
fixable: true,
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
/** @type {import('stylelint').CoreRules[ruleName]} */
|
|
31
|
+
const rule = (primary, secondaryOptions, context) => {
|
|
32
|
+
return (root, result) => {
|
|
33
|
+
const validOptions = validateOptions(
|
|
34
|
+
result,
|
|
35
|
+
ruleName,
|
|
36
|
+
{
|
|
37
|
+
actual: primary,
|
|
38
|
+
possible: ['always', 'never'],
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
actual: secondaryOptions,
|
|
42
|
+
possible: {
|
|
43
|
+
except: ['first-nested', 'after-block', 'after-comment', 'after-declaration'],
|
|
44
|
+
ignore: [
|
|
45
|
+
'after-comment',
|
|
46
|
+
'after-declaration',
|
|
47
|
+
'first-nested',
|
|
48
|
+
'inside-single-line-block',
|
|
49
|
+
],
|
|
50
|
+
},
|
|
51
|
+
optional: true,
|
|
52
|
+
},
|
|
53
|
+
);
|
|
54
|
+
|
|
55
|
+
if (!validOptions) {
|
|
56
|
+
return;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
root.walkDecls((decl) => {
|
|
60
|
+
const prop = decl.prop;
|
|
61
|
+
const parent = decl.parent;
|
|
62
|
+
|
|
63
|
+
if (parent == null) {
|
|
64
|
+
return;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
// Ignore the first node
|
|
68
|
+
if (isFirstNodeOfRoot(decl)) {
|
|
69
|
+
return;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
if (!isAtRule(parent) && !isRule(parent) && !isRoot(parent)) {
|
|
73
|
+
return;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
if (!isStandardSyntaxDeclaration(decl)) {
|
|
77
|
+
return;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
if (isCustomProperty(prop)) {
|
|
81
|
+
return;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
// Optionally ignore the node if a comment precedes it
|
|
85
|
+
if (optionsMatches(secondaryOptions, 'ignore', 'after-comment') && isAfterComment(decl)) {
|
|
86
|
+
return;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
// Optionally ignore the node if a declaration precedes it
|
|
90
|
+
if (
|
|
91
|
+
optionsMatches(secondaryOptions, 'ignore', 'after-declaration') &&
|
|
92
|
+
isAfterStandardPropertyDeclaration(decl)
|
|
93
|
+
) {
|
|
94
|
+
return;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
// Optionally ignore the node if it is the first nested
|
|
98
|
+
if (optionsMatches(secondaryOptions, 'ignore', 'first-nested') && isFirstNested(decl)) {
|
|
99
|
+
return;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
// Optionally ignore nodes inside single-line blocks
|
|
103
|
+
if (
|
|
104
|
+
optionsMatches(secondaryOptions, 'ignore', 'inside-single-line-block') &&
|
|
105
|
+
isSingleLineString(blockString(parent))
|
|
106
|
+
) {
|
|
107
|
+
return;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
let expectEmptyLineBefore = primary === 'always';
|
|
111
|
+
|
|
112
|
+
// Optionally reverse the expectation if any exceptions apply
|
|
113
|
+
if (
|
|
114
|
+
(optionsMatches(secondaryOptions, 'except', 'first-nested') && isFirstNested(decl)) ||
|
|
115
|
+
(optionsMatches(secondaryOptions, 'except', 'after-block') && isAfterBlock(decl)) ||
|
|
116
|
+
(optionsMatches(secondaryOptions, 'except', 'after-comment') && isAfterComment(decl)) ||
|
|
117
|
+
(optionsMatches(secondaryOptions, 'except', 'after-declaration') &&
|
|
118
|
+
isAfterStandardPropertyDeclaration(decl))
|
|
119
|
+
) {
|
|
120
|
+
expectEmptyLineBefore = !expectEmptyLineBefore;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
// Check for at least one empty line
|
|
124
|
+
const hasEmptyLineBefore = hasEmptyLine(decl.raws.before);
|
|
125
|
+
|
|
126
|
+
// Return if the expectation is met
|
|
127
|
+
if (expectEmptyLineBefore === hasEmptyLineBefore) {
|
|
128
|
+
return;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
const message = expectEmptyLineBefore ? messages.expected : messages.rejected;
|
|
132
|
+
const action = expectEmptyLineBefore ? 'add' : 'remove';
|
|
133
|
+
|
|
134
|
+
// Fix
|
|
135
|
+
const fix = () =>
|
|
136
|
+
fixEmptyLinesBefore({
|
|
137
|
+
node: decl,
|
|
138
|
+
newline: context.newline,
|
|
139
|
+
action,
|
|
140
|
+
});
|
|
141
|
+
|
|
142
|
+
report({
|
|
143
|
+
message,
|
|
144
|
+
messageArgs: [],
|
|
145
|
+
node: decl,
|
|
146
|
+
result,
|
|
147
|
+
ruleName,
|
|
148
|
+
fix: {
|
|
149
|
+
apply: fix,
|
|
150
|
+
node: decl.parent,
|
|
151
|
+
},
|
|
152
|
+
});
|
|
153
|
+
});
|
|
154
|
+
};
|
|
155
|
+
};
|
|
156
|
+
|
|
157
|
+
rule.ruleName = ruleName;
|
|
158
|
+
rule.messages = messages;
|
|
159
|
+
rule.meta = meta;
|
|
160
|
+
export default rule;
|