@alexlit/lint-kit 183.4.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-eslint/package.json +4 -4
- 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 +3 -3
- package/packages/config-stylelint/plugins/color-format.js +2 -2
package/packages/config-stylelint/node_modules/stylelint/lib/utils/addSemicolonForEditInfo.mjs
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/** @import { Node as PostcssNode } from 'postcss' */
|
|
2
|
+
import { isAtRule } from './typeGuards.mjs';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Adjust the text in EditInfo to include a semicolon when needed.
|
|
6
|
+
*
|
|
7
|
+
* @param {PostcssNode} node
|
|
8
|
+
* @param {{range: [number, number], text: string}} fixData
|
|
9
|
+
* @returns {{range: [number, number], text: string}}
|
|
10
|
+
*/
|
|
11
|
+
export default function addSemicolonForEditInfo(node, fixData) {
|
|
12
|
+
const { parent } = node;
|
|
13
|
+
|
|
14
|
+
if (!parent) return fixData;
|
|
15
|
+
|
|
16
|
+
if (node.type === 'decl') {
|
|
17
|
+
if (parent.raws.semicolon || parent.last !== node) {
|
|
18
|
+
return {
|
|
19
|
+
...fixData,
|
|
20
|
+
text: `${fixData.text};`,
|
|
21
|
+
};
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
if (isAtRule(node)) {
|
|
26
|
+
if (!node.nodes && (parent.raws.semicolon || parent.last !== node)) {
|
|
27
|
+
return {
|
|
28
|
+
...fixData,
|
|
29
|
+
text: `${fixData.text};`,
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
return fixData;
|
|
35
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Ensures the given rule name is appended to the provided string.
|
|
3
|
+
*
|
|
4
|
+
* If the string does not already end with the rule name in parentheses, the rule name is appended in parentheses.
|
|
5
|
+
*
|
|
6
|
+
* @param {string} string - The message to which the rule name may be appended
|
|
7
|
+
* @param {string} ruleName - The rule name to append
|
|
8
|
+
*
|
|
9
|
+
* @returns {string} The provided string with the given rule name appended
|
|
10
|
+
*/
|
|
11
|
+
export default function appendRuleName(string, ruleName) {
|
|
12
|
+
return !string.endsWith(`(${ruleName})`) ? `${string} (${ruleName})` : string;
|
|
13
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Tests if two arrays are equal.
|
|
3
|
+
*
|
|
4
|
+
* @param {unknown} a
|
|
5
|
+
* @param {unknown} b
|
|
6
|
+
* @returns {boolean}
|
|
7
|
+
*/
|
|
8
|
+
export default function arrayEqual(a, b) {
|
|
9
|
+
if (!Array.isArray(a) || !Array.isArray(b)) return false;
|
|
10
|
+
|
|
11
|
+
if (a.length !== b.length) return false;
|
|
12
|
+
|
|
13
|
+
return a.every((elem, index) => elem === b[index]);
|
|
14
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { isAtRule, isRule } from './typeGuards.mjs';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @param {import('postcss').Container} statement
|
|
5
|
+
* @param {{ noRawBefore: boolean }} options
|
|
6
|
+
* @returns {string}
|
|
7
|
+
*/
|
|
8
|
+
export default function beforeBlockString(statement, { noRawBefore } = { noRawBefore: false }) {
|
|
9
|
+
let result = '';
|
|
10
|
+
|
|
11
|
+
const before = statement.raws.before || '';
|
|
12
|
+
|
|
13
|
+
if (!noRawBefore) {
|
|
14
|
+
result += before;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
if (isRule(statement)) {
|
|
18
|
+
result += statement.selector;
|
|
19
|
+
} else if (isAtRule(statement)) {
|
|
20
|
+
result += `@${statement.name}${statement.raws.afterName || ''}${statement.params}`;
|
|
21
|
+
} else {
|
|
22
|
+
return '';
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
result += statement.raws.between || '';
|
|
26
|
+
|
|
27
|
+
return result;
|
|
28
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import beforeBlockString from './beforeBlockString.mjs';
|
|
2
|
+
import hasBlock from './hasBlock.mjs';
|
|
3
|
+
import rawNodeString from './rawNodeString.mjs';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Return a CSS statement's block -- the string that starts and `{` and ends with `}`.
|
|
7
|
+
*
|
|
8
|
+
* If the statement has no block (e.g. `@import url(foo.css);`), returns an empty string.
|
|
9
|
+
*
|
|
10
|
+
* @param {import('postcss').Container} statement
|
|
11
|
+
* @returns {string}
|
|
12
|
+
*/
|
|
13
|
+
export default function blockString(statement) {
|
|
14
|
+
if (!hasBlock(statement)) {
|
|
15
|
+
return '';
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
return rawNodeString(statement).slice(beforeBlockString(statement).length);
|
|
19
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import dynamicImport from './dynamicImport.mjs';
|
|
2
|
+
|
|
3
|
+
/** Maximum number of modules to cache to prevent unbounded memory growth. */
|
|
4
|
+
const MAX_CACHE_SIZE = 1000;
|
|
5
|
+
|
|
6
|
+
/** Time-to-live in milliseconds. Exported for tests. */
|
|
7
|
+
export const TTL_MS = 30 * 60 * 1000;
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* @typedef {Object} CacheEntry
|
|
11
|
+
* @property {Promise<any>} promise
|
|
12
|
+
* @property {number} timestamp
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
/** @type {Map<string, CacheEntry>} */
|
|
16
|
+
const moduleCache = new Map();
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Cached dynamic import - stores the Promise to avoid repeated resolution.
|
|
20
|
+
*
|
|
21
|
+
* While Node.js caches ES modules, we can avoid repeated async overhead by
|
|
22
|
+
* caching the Promise itself.
|
|
23
|
+
*
|
|
24
|
+
* @param {string} modulePath
|
|
25
|
+
* @returns {Promise<any>}
|
|
26
|
+
*/
|
|
27
|
+
export default function cachedImport(modulePath) {
|
|
28
|
+
const cached = moduleCache.get(modulePath);
|
|
29
|
+
|
|
30
|
+
if (cached) {
|
|
31
|
+
// Check if entry has expired.
|
|
32
|
+
if (Date.now() - cached.timestamp > TTL_MS) {
|
|
33
|
+
moduleCache.delete(modulePath);
|
|
34
|
+
} else {
|
|
35
|
+
return cached.promise;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
const importPromise = dynamicImport(modulePath).catch((error) => {
|
|
40
|
+
// Remove failed imports from cache so they can be retried.
|
|
41
|
+
moduleCache.delete(modulePath);
|
|
42
|
+
throw error;
|
|
43
|
+
});
|
|
44
|
+
|
|
45
|
+
// Evict oldest entry if cache is full.
|
|
46
|
+
if (moduleCache.size >= MAX_CACHE_SIZE) {
|
|
47
|
+
const oldestKey = moduleCache.keys().next().value;
|
|
48
|
+
|
|
49
|
+
if (oldestKey) {
|
|
50
|
+
moduleCache.delete(oldestKey);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
moduleCache.set(modulePath, {
|
|
55
|
+
promise: importPromise,
|
|
56
|
+
timestamp: Date.now(),
|
|
57
|
+
});
|
|
58
|
+
|
|
59
|
+
return importPromise;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Clear the module cache. Useful for testing or when modules need to be
|
|
64
|
+
* reloaded.
|
|
65
|
+
*/
|
|
66
|
+
export function clearModuleCache() {
|
|
67
|
+
moduleCache.clear();
|
|
68
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import Result from 'postcss/lib/result';
|
|
2
|
+
|
|
3
|
+
import getLexer from './getLexer.mjs';
|
|
4
|
+
import getStylelintRule from './getStylelintRule.mjs';
|
|
5
|
+
import { isPlainObject } from './validateTypes.mjs';
|
|
6
|
+
import normalizeRuleSettings from '../normalizeRuleSettings.mjs';
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* @type {import('stylelint').Utils['checkAgainstRule']}
|
|
10
|
+
*/
|
|
11
|
+
export default async function checkAgainstRule(options, callback) {
|
|
12
|
+
if (!isPlainObject(options)) throw new Error('Expected an options object');
|
|
13
|
+
|
|
14
|
+
if (!callback) throw new Error('Expected a callback function');
|
|
15
|
+
|
|
16
|
+
const { ruleName, ruleSettings, root, result, context = {} } = options;
|
|
17
|
+
|
|
18
|
+
if (!ruleName) throw new Error('Expected a "ruleName" option');
|
|
19
|
+
|
|
20
|
+
const rule = await getStylelintRule(ruleName, result?.stylelint?.config);
|
|
21
|
+
|
|
22
|
+
if (!rule) throw new Error(`Rule "${ruleName}" does not exist`);
|
|
23
|
+
|
|
24
|
+
if (!ruleSettings) throw new Error('Expected a "ruleSettings" option');
|
|
25
|
+
|
|
26
|
+
if (!root) throw new Error('Expected a "root" option');
|
|
27
|
+
|
|
28
|
+
const settings = normalizeRuleSettings(ruleSettings, rule);
|
|
29
|
+
|
|
30
|
+
if (!settings) {
|
|
31
|
+
return;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
const tmpPostcssResult = new Result(
|
|
35
|
+
// NOTE: The first argument is unused, so passing `undefined` raises no problems.
|
|
36
|
+
// But this PostCSS's behavior may change in the future.
|
|
37
|
+
// @ts-expect-error -- TS2345: Argument of type 'undefined' is not assignable to parameter of type 'Processor'.
|
|
38
|
+
undefined,
|
|
39
|
+
undefined,
|
|
40
|
+
undefined,
|
|
41
|
+
);
|
|
42
|
+
|
|
43
|
+
/** @type {import('stylelint').StylelintPostcssResult} */
|
|
44
|
+
const stylelint = result?.stylelint ?? {
|
|
45
|
+
ruleSeverities: {},
|
|
46
|
+
customMessages: {},
|
|
47
|
+
customUrls: {},
|
|
48
|
+
ruleMetadata: {},
|
|
49
|
+
fixersData: {},
|
|
50
|
+
rangesOfComputedEditInfos: [],
|
|
51
|
+
disabledRanges: {},
|
|
52
|
+
lexer: getLexer({}),
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
// @ts-expect-error -- TS2339: Property 'stylelint' does not exist on type 'Result<undefined>'.
|
|
56
|
+
tmpPostcssResult.stylelint = stylelint;
|
|
57
|
+
|
|
58
|
+
const [primary, secondary] = settings;
|
|
59
|
+
const ruleFunc = rule(primary, secondary || {}, context);
|
|
60
|
+
|
|
61
|
+
await ruleFunc(
|
|
62
|
+
root,
|
|
63
|
+
|
|
64
|
+
// NOTE: This temporary PostCSS result doesn't have a property for Stylelint use.
|
|
65
|
+
// Problems may occur if some rules use the property.
|
|
66
|
+
// @ts-expect-error -- TS2345: Argument of type 'Result' is not assignable to parameter of type 'PostcssResult'.
|
|
67
|
+
tmpPostcssResult,
|
|
68
|
+
);
|
|
69
|
+
|
|
70
|
+
for (const warning of tmpPostcssResult.warnings()) callback(warning);
|
|
71
|
+
}
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import { EOL } from 'node:os';
|
|
2
|
+
|
|
3
|
+
import { distance } from 'fastest-levenshtein';
|
|
4
|
+
import picocolors from 'picocolors';
|
|
5
|
+
|
|
6
|
+
const { cyan, red } = picocolors;
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* @param {{ [key: string]: { alias?: string } }} allowedOptions
|
|
10
|
+
* @returns {string[]}
|
|
11
|
+
*/
|
|
12
|
+
const buildAllowedOptions = (allowedOptions) => {
|
|
13
|
+
const options = Object.keys(allowedOptions);
|
|
14
|
+
|
|
15
|
+
for (const { alias } of Object.values(allowedOptions)) {
|
|
16
|
+
if (alias) {
|
|
17
|
+
options.push(alias);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
options.sort();
|
|
22
|
+
|
|
23
|
+
return options;
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* @param {string[]} all
|
|
28
|
+
* @param {string} invalid
|
|
29
|
+
* @returns {null|string}
|
|
30
|
+
*/
|
|
31
|
+
const suggest = (all, invalid) => {
|
|
32
|
+
const maxThreshold = 10;
|
|
33
|
+
|
|
34
|
+
for (let threshold = 1; threshold <= maxThreshold; threshold++) {
|
|
35
|
+
const suggestion = all.find((option) => distance(option, invalid) <= threshold);
|
|
36
|
+
|
|
37
|
+
if (suggestion) {
|
|
38
|
+
return suggestion;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
return null;
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Converts a string to kebab case.
|
|
47
|
+
* For example, `kebabCase('oneTwoThree') === 'one-two-three'`.
|
|
48
|
+
* @param {string} opt
|
|
49
|
+
* @returns {string}
|
|
50
|
+
*/
|
|
51
|
+
const kebabCase = (opt) => {
|
|
52
|
+
const matches = opt.match(/[A-Z]?[a-z]+|[A-Z]|[0-9]+/g);
|
|
53
|
+
|
|
54
|
+
if (matches) {
|
|
55
|
+
return matches.map((s) => s.toLowerCase()).join('-');
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
return '';
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* @param {string} opt
|
|
63
|
+
* @returns {string}
|
|
64
|
+
*/
|
|
65
|
+
const cliOption = (opt) => {
|
|
66
|
+
if (opt.length === 1) {
|
|
67
|
+
return `"-${opt}"`;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
return `"--${kebabCase(opt)}"`;
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* @param {string} invalid
|
|
75
|
+
* @param {string|null} suggestion
|
|
76
|
+
* @returns {string}
|
|
77
|
+
*/
|
|
78
|
+
const buildMessageLine = (invalid, suggestion) => {
|
|
79
|
+
let line = `Invalid option ${red(cliOption(invalid))}.`;
|
|
80
|
+
|
|
81
|
+
if (suggestion) {
|
|
82
|
+
line += ` Did you mean ${cyan(cliOption(suggestion))}?`;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
return line + EOL;
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* @param {{ [key: string]: any }} allowedOptions
|
|
90
|
+
* @param {{ [key: string]: any }} inputOptions
|
|
91
|
+
* @returns {string}
|
|
92
|
+
*/
|
|
93
|
+
export default function checkInvalidCLIOptions(allowedOptions, inputOptions) {
|
|
94
|
+
const allOptions = buildAllowedOptions(allowedOptions);
|
|
95
|
+
|
|
96
|
+
return Object.keys(inputOptions)
|
|
97
|
+
.filter((opt) => !allOptions.includes(opt))
|
|
98
|
+
.map((opt) => kebabCase(opt))
|
|
99
|
+
.reduce((msg, invalid) => {
|
|
100
|
+
// NOTE: No suggestion for shortcut options because it's too difficult
|
|
101
|
+
const suggestion = invalid.length >= 2 ? suggest(allOptions, invalid) : null;
|
|
102
|
+
|
|
103
|
+
return msg + buildMessageLine(invalid, suggestion);
|
|
104
|
+
}, '');
|
|
105
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { assertString, isString } from './validateTypes.mjs';
|
|
2
|
+
import { isComment } from './typeGuards.mjs';
|
|
3
|
+
|
|
4
|
+
export const DISABLE_COMMAND = '-disable';
|
|
5
|
+
export const DISABLE_LINE_COMMAND = '-disable-line';
|
|
6
|
+
export const DISABLE_NEXT_LINE_COMMAND = '-disable-next-line';
|
|
7
|
+
export const ENABLE_COMMAND = '-enable';
|
|
8
|
+
|
|
9
|
+
const ALL_COMMANDS = new Set([
|
|
10
|
+
DISABLE_COMMAND,
|
|
11
|
+
DISABLE_LINE_COMMAND,
|
|
12
|
+
DISABLE_NEXT_LINE_COMMAND,
|
|
13
|
+
ENABLE_COMMAND,
|
|
14
|
+
]);
|
|
15
|
+
|
|
16
|
+
export const DEFAULT_CONFIGURATION_COMMENT = 'stylelint';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Extract a command from a given comment.
|
|
20
|
+
*
|
|
21
|
+
* @param {string} commentText
|
|
22
|
+
* @param {string} [configurationComment]
|
|
23
|
+
* @returns {string}
|
|
24
|
+
*/
|
|
25
|
+
export function extractConfigurationComment(
|
|
26
|
+
commentText,
|
|
27
|
+
configurationComment = DEFAULT_CONFIGURATION_COMMENT,
|
|
28
|
+
) {
|
|
29
|
+
if (!commentText) return commentText;
|
|
30
|
+
|
|
31
|
+
const [command] = commentText.split(/\s/, 1);
|
|
32
|
+
|
|
33
|
+
assertString(command);
|
|
34
|
+
|
|
35
|
+
return command.replace(configurationComment, '');
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Tests if the given comment is a Stylelint command.
|
|
40
|
+
*
|
|
41
|
+
* @param {string | import('postcss').Node} textOrNode
|
|
42
|
+
* @param {string} [configurationComment]
|
|
43
|
+
* @returns {boolean}
|
|
44
|
+
*/
|
|
45
|
+
export function isConfigurationComment(
|
|
46
|
+
textOrNode,
|
|
47
|
+
configurationComment = DEFAULT_CONFIGURATION_COMMENT,
|
|
48
|
+
) {
|
|
49
|
+
const commentText = isString(textOrNode)
|
|
50
|
+
? textOrNode
|
|
51
|
+
: isComment(textOrNode)
|
|
52
|
+
? textOrNode.text
|
|
53
|
+
: undefined;
|
|
54
|
+
|
|
55
|
+
if (!commentText) return false;
|
|
56
|
+
|
|
57
|
+
const command = extractConfigurationComment(commentText, configurationComment);
|
|
58
|
+
|
|
59
|
+
return command !== undefined && ALL_COMMANDS.has(command);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Get full stylelint command
|
|
64
|
+
*
|
|
65
|
+
* @param {string} command
|
|
66
|
+
* @param {string} [configurationComment]
|
|
67
|
+
* @returns {string}
|
|
68
|
+
*/
|
|
69
|
+
export function getConfigurationComment(
|
|
70
|
+
command,
|
|
71
|
+
configurationComment = DEFAULT_CONFIGURATION_COMMENT,
|
|
72
|
+
) {
|
|
73
|
+
return `${configurationComment}${command}`;
|
|
74
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { isString } from './validateTypes.mjs';
|
|
2
|
+
|
|
3
|
+
/** @typedef {false | { match: string, pattern: string, substring: string }} ReturnValue */
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Checks if a string contains a value. The comparison value can be a string or
|
|
7
|
+
* an array of strings.
|
|
8
|
+
*
|
|
9
|
+
* Any strings starting and ending with `/` are ignored. Use the
|
|
10
|
+
* matchesStringOrRegExp() util to match regexes.
|
|
11
|
+
*
|
|
12
|
+
* @template {unknown} T
|
|
13
|
+
* @param {string} input
|
|
14
|
+
* @param {T | T[]} comparison
|
|
15
|
+
* @returns {ReturnValue}
|
|
16
|
+
*/
|
|
17
|
+
export default function containsString(input, comparison) {
|
|
18
|
+
if (!Array.isArray(comparison)) {
|
|
19
|
+
return testAgainstString(input, comparison);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
for (const comparisonItem of comparison) {
|
|
23
|
+
const testResult = testAgainstString(input, comparisonItem);
|
|
24
|
+
|
|
25
|
+
if (testResult) {
|
|
26
|
+
return testResult;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
return false;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* @param {string} value
|
|
35
|
+
* @param {unknown} comparison
|
|
36
|
+
* @returns {ReturnValue}
|
|
37
|
+
*/
|
|
38
|
+
function testAgainstString(value, comparison) {
|
|
39
|
+
if (!comparison) return false;
|
|
40
|
+
|
|
41
|
+
if (!isString(comparison)) return false;
|
|
42
|
+
|
|
43
|
+
if (comparison.startsWith('/') && comparison.endsWith('/')) {
|
|
44
|
+
return false;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
if (value.includes(comparison)) {
|
|
48
|
+
return { match: value, pattern: comparison, substring: comparison };
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
return false;
|
|
52
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Create a map with unique sets of values from a record.
|
|
3
|
+
*
|
|
4
|
+
* @template T
|
|
5
|
+
* @param {Record<string, T | T[]>} record
|
|
6
|
+
* @returns {Map<string, Set<T>>}
|
|
7
|
+
*/
|
|
8
|
+
export default function createMapWithSet(record) {
|
|
9
|
+
/** @type {Map<string, Set<T>>} */
|
|
10
|
+
const map = new Map();
|
|
11
|
+
|
|
12
|
+
for (const [key, value] of Object.entries(record)) {
|
|
13
|
+
const list = Array.isArray(value) ? value : [value];
|
|
14
|
+
|
|
15
|
+
map.set(key, new Set(list));
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
return map;
|
|
19
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { isAbsolute } from 'node:path';
|
|
2
|
+
import { pathToFileURL } from 'node:url';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Dynamic import wrapper for compatibility with absolute paths on Windows
|
|
6
|
+
*
|
|
7
|
+
* @see https://github.com/stylelint/stylelint/issues/7382
|
|
8
|
+
*
|
|
9
|
+
* @param {string} path
|
|
10
|
+
*/
|
|
11
|
+
export default function dynamicImport(path) {
|
|
12
|
+
return import(isAbsolute(path) ? pathToFileURL(path).toString() : path);
|
|
13
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { isAtRule, isRoot, isRule } from './typeGuards.mjs';
|
|
2
|
+
|
|
3
|
+
/** @typedef {import('postcss').Root} Root */
|
|
4
|
+
/** @typedef {import('postcss').Root} Document */
|
|
5
|
+
/** @typedef {import('postcss').Node} PostcssNode */
|
|
6
|
+
/** @typedef {import('postcss').Container} PostcssContainerNode */
|
|
7
|
+
/** @typedef {import('postcss').Declaration} Declaration */
|
|
8
|
+
/** @typedef {(callbackFn: (decl: Declaration, index: number, decls: Declaration[]) => void) => void} EachDeclaration */
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* @param {PostcssNode} node
|
|
12
|
+
* @returns {node is PostcssContainerNode}
|
|
13
|
+
*/
|
|
14
|
+
function isContainerNode(node) {
|
|
15
|
+
return isRule(node) || isAtRule(node) || isRoot(node);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* In order to accommodate nested blocks (postcss-nested),
|
|
20
|
+
* we need to run a shallow loop (instead of eachDecl() or eachRule(),
|
|
21
|
+
* which loop recursively) and allow each nested block to accumulate
|
|
22
|
+
* its own list of properties -- so that a property in a nested rule
|
|
23
|
+
* does not conflict with the same property in the parent rule
|
|
24
|
+
* executes a provided function once for each declaration block.
|
|
25
|
+
*
|
|
26
|
+
* @param {Root | Document} root - root element of file.
|
|
27
|
+
* @param {(eachDecl: EachDeclaration) => void} callback - Function to execute for each declaration block
|
|
28
|
+
*
|
|
29
|
+
* @returns {void}
|
|
30
|
+
*/
|
|
31
|
+
export default function eachDeclarationBlock(root, callback) {
|
|
32
|
+
/**
|
|
33
|
+
* @param {PostcssNode} statement
|
|
34
|
+
*
|
|
35
|
+
* @returns {void}
|
|
36
|
+
*/
|
|
37
|
+
function each(statement) {
|
|
38
|
+
if (!isContainerNode(statement)) return;
|
|
39
|
+
|
|
40
|
+
if (statement.nodes && statement.nodes.length) {
|
|
41
|
+
/** @type {Declaration[]} */
|
|
42
|
+
const decls = [];
|
|
43
|
+
|
|
44
|
+
for (const node of statement.nodes) {
|
|
45
|
+
if (node.type === 'decl') {
|
|
46
|
+
decls.push(node);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
each(node);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
if (decls.length) {
|
|
53
|
+
callback(decls.forEach.bind(decls));
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
each(root);
|
|
59
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { isRoot } from './typeGuards.mjs';
|
|
2
|
+
|
|
3
|
+
/** @import { Node } from 'postcss' */
|
|
4
|
+
|
|
5
|
+
export const STOP = 'STOP';
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Iterates over each node up to the root node.
|
|
9
|
+
*
|
|
10
|
+
* @param {Node} node
|
|
11
|
+
* @param {(node: Node) => void | STOP} callback
|
|
12
|
+
* @returns {void}
|
|
13
|
+
*/
|
|
14
|
+
export default function eachNodeUpToRoot(node, callback) {
|
|
15
|
+
let currentNode = node.parent;
|
|
16
|
+
|
|
17
|
+
while (currentNode && !isRoot(currentNode)) {
|
|
18
|
+
if (callback(currentNode) === STOP) break;
|
|
19
|
+
|
|
20
|
+
currentNode = currentNode.parent;
|
|
21
|
+
}
|
|
22
|
+
}
|