@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
|
@@ -0,0 +1,466 @@
|
|
|
1
|
+
import { ParseErrorMessage, calcFromComponentValues } from '@csstools/css-calc';
|
|
2
|
+
import { TokenType, tokenize } from '@csstools/css-tokenizer';
|
|
3
|
+
import { find, parse, string } from 'css-tree';
|
|
4
|
+
import {
|
|
5
|
+
isFunctionNode,
|
|
6
|
+
parseListOfComponentValues,
|
|
7
|
+
stringify,
|
|
8
|
+
walk,
|
|
9
|
+
} from '@csstools/css-parser-algorithms';
|
|
10
|
+
|
|
11
|
+
import { atRuleRegexes, mayIncludeRegexes } from '../../utils/regexes.mjs';
|
|
12
|
+
import { isRegExp, isString } from '../../utils/validateTypes.mjs';
|
|
13
|
+
import { declarationValueIndex } from '../../utils/nodeFieldIndices.mjs';
|
|
14
|
+
import { emitDeprecationWarning } from '../../utils/emitWarning.mjs';
|
|
15
|
+
import getDeclarationValue from '../../utils/getDeclarationValue.mjs';
|
|
16
|
+
import getLexer from '../../utils/getLexer.mjs';
|
|
17
|
+
import isCustomProperty from '../../utils/isCustomProperty.mjs';
|
|
18
|
+
import { isDeclaration } from '../../utils/typeGuards.mjs';
|
|
19
|
+
import isDescriptorDeclaration from '../../utils/isDescriptorDeclaration.mjs';
|
|
20
|
+
import isStandardSyntaxDeclaration from '../../utils/isStandardSyntaxDeclaration.mjs';
|
|
21
|
+
import isStandardSyntaxProperty from '../../utils/isStandardSyntaxProperty.mjs';
|
|
22
|
+
import isStandardSyntaxValue from '../../utils/isStandardSyntaxValue.mjs';
|
|
23
|
+
import optionsMatchesEntry from '../../utils/optionsMatchesEntry.mjs';
|
|
24
|
+
import report from '../../utils/report.mjs';
|
|
25
|
+
import ruleMessages from '../../utils/ruleMessages.mjs';
|
|
26
|
+
import validateObjectWithArrayProps from '../../utils/validateObjectWithArrayProps.mjs';
|
|
27
|
+
import validateObjectWithProps from '../../utils/validateObjectWithProps.mjs';
|
|
28
|
+
import validateOptions from '../../utils/validateOptions.mjs';
|
|
29
|
+
|
|
30
|
+
const ruleName = 'declaration-property-value-no-unknown';
|
|
31
|
+
|
|
32
|
+
const messages = ruleMessages(ruleName, {
|
|
33
|
+
rejected: (property, value) => `Unexpected unknown value "${value}" for property "${property}"`,
|
|
34
|
+
rejectedParseError: (property, value) =>
|
|
35
|
+
`Cannot parse property value "${value}" for property "${property}"`,
|
|
36
|
+
rejectedMath: (property, expression) =>
|
|
37
|
+
`Unexpected invalid math expression "${expression}" for property "${property}"`,
|
|
38
|
+
});
|
|
39
|
+
|
|
40
|
+
const meta = {
|
|
41
|
+
url: 'https://stylelint.io/user-guide/rules/declaration-property-value-no-unknown',
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
const SYNTAX_DESCRIPTOR = /^syntax$/i;
|
|
45
|
+
|
|
46
|
+
const UNSUPPORTED_FUNCTIONS_IN_CSSTREE = new Set(['clamp', 'min', 'max', 'env']);
|
|
47
|
+
|
|
48
|
+
/** @type {WeakMap<object, Set<string>>} */
|
|
49
|
+
const validMatchesCacheByLexer = new WeakMap();
|
|
50
|
+
const MAX_CACHE_SIZE = 10000;
|
|
51
|
+
|
|
52
|
+
/** @import { CssNode } from 'css-tree' */
|
|
53
|
+
/** @import { ParseError } from '@csstools/css-calc' */
|
|
54
|
+
|
|
55
|
+
/** @typedef {import('stylelint').CoreRules[ruleName]} Rule */
|
|
56
|
+
/** @typedef {Parameters<Rule>[1]} SecondaryOptions */
|
|
57
|
+
|
|
58
|
+
/** @type {Rule} */
|
|
59
|
+
const rule = (primary, secondaryOptions) => {
|
|
60
|
+
return (root, result) => {
|
|
61
|
+
const validOptions = validateOptions(
|
|
62
|
+
result,
|
|
63
|
+
ruleName,
|
|
64
|
+
{ actual: primary },
|
|
65
|
+
{
|
|
66
|
+
actual: secondaryOptions,
|
|
67
|
+
possible: {
|
|
68
|
+
ignoreProperties: [validateObjectWithArrayProps(isString, isRegExp)],
|
|
69
|
+
propertiesSyntax: [validateObjectWithProps(isString)],
|
|
70
|
+
typesSyntax: [validateObjectWithProps(isString)],
|
|
71
|
+
},
|
|
72
|
+
optional: true,
|
|
73
|
+
},
|
|
74
|
+
);
|
|
75
|
+
|
|
76
|
+
if (!validOptions) {
|
|
77
|
+
return;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
if (secondaryOptions?.propertiesSyntax) {
|
|
81
|
+
emitDeprecationWarning(
|
|
82
|
+
`We've deprecated the "propertiesSyntax" option of "${ruleName}".`,
|
|
83
|
+
'RULE_OPTION',
|
|
84
|
+
'Use the shared and more performant "languageOptions" configuration property instead. See https://stylelint.io/user-guide/rules/declaration-property-value-no-unknown#propertiessyntax',
|
|
85
|
+
);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
if (secondaryOptions?.typesSyntax) {
|
|
89
|
+
emitDeprecationWarning(
|
|
90
|
+
`We've deprecated the "typesSyntax" option of "${ruleName}".`,
|
|
91
|
+
'RULE_OPTION',
|
|
92
|
+
'Use the shared and more performant "languageOptions" configuration property instead. See https://stylelint.io/user-guide/rules/declaration-property-value-no-unknown#typessyntax',
|
|
93
|
+
);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
/** @type {(name: string, propValue: string) => boolean} */
|
|
97
|
+
const isPropIgnored = (name, value) =>
|
|
98
|
+
optionsMatchesEntry(secondaryOptions, 'ignoreProperties', name, value);
|
|
99
|
+
|
|
100
|
+
const propertiesSyntax = { ...secondaryOptions?.propertiesSyntax };
|
|
101
|
+
const typesSyntax = { ...secondaryOptions?.typesSyntax };
|
|
102
|
+
|
|
103
|
+
/** @type {Map<string, string>} */
|
|
104
|
+
const typedCustomPropertyNames = new Map();
|
|
105
|
+
|
|
106
|
+
root.walkAtRules(atRuleRegexes.propertyName, (atRule) => {
|
|
107
|
+
const propName = atRule.params.trim();
|
|
108
|
+
|
|
109
|
+
if (!propName || !atRule.nodes || !isCustomProperty(propName)) return;
|
|
110
|
+
|
|
111
|
+
for (const node of atRule.nodes) {
|
|
112
|
+
if (isDeclaration(node) && SYNTAX_DESCRIPTOR.test(node.prop)) {
|
|
113
|
+
const value = node.value.trim();
|
|
114
|
+
const unquoted = string.decode(value);
|
|
115
|
+
|
|
116
|
+
// Only string values are valid.
|
|
117
|
+
// We can not check the syntax of this property.
|
|
118
|
+
if (unquoted === value) continue;
|
|
119
|
+
|
|
120
|
+
// Any value is allowed in this custom property.
|
|
121
|
+
// We don't need to check this property.
|
|
122
|
+
if (unquoted === '*') continue;
|
|
123
|
+
|
|
124
|
+
// https://github.com/csstree/csstree/pull/256
|
|
125
|
+
// We can circumvent this issue by prefixing the property name,
|
|
126
|
+
// making it a vendor-prefixed property instead of a custom property.
|
|
127
|
+
// No one should be using `-stylelint--` as a property prefix.
|
|
128
|
+
//
|
|
129
|
+
// When this is resolved `typedCustomPropertyNames` can become a `Set<string>`
|
|
130
|
+
// and the prefix can be removed.
|
|
131
|
+
const prefixedPropName = `-stylelint${propName}`;
|
|
132
|
+
|
|
133
|
+
typedCustomPropertyNames.set(propName, prefixedPropName);
|
|
134
|
+
propertiesSyntax[prefixedPropName] = unquoted;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
});
|
|
138
|
+
|
|
139
|
+
const hasExtraSyntax =
|
|
140
|
+
Object.keys(propertiesSyntax).length > 0 || Object.keys(typesSyntax).length > 0;
|
|
141
|
+
|
|
142
|
+
const lexer = hasExtraSyntax
|
|
143
|
+
? getLexer(result.stylelint.config ?? {}, {
|
|
144
|
+
properties: propertiesSyntax,
|
|
145
|
+
types: typesSyntax,
|
|
146
|
+
})
|
|
147
|
+
: /** @type {import('css-tree').Lexer} */ (result.stylelint.lexer);
|
|
148
|
+
|
|
149
|
+
let validMatchesCache = validMatchesCacheByLexer.get(lexer);
|
|
150
|
+
|
|
151
|
+
if (!validMatchesCache) {
|
|
152
|
+
validMatchesCache = new Set();
|
|
153
|
+
validMatchesCacheByLexer.set(lexer, validMatchesCache);
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
root.walkDecls((decl) => {
|
|
157
|
+
const { prop } = decl;
|
|
158
|
+
const value = getDeclarationValue(decl);
|
|
159
|
+
|
|
160
|
+
// csstree/csstree#243
|
|
161
|
+
// NOTE: CSSTree's `fork()` doesn't support `-moz-initial`, but it may be possible in the future.
|
|
162
|
+
if (/^-moz-initial$/i.test(value)) return;
|
|
163
|
+
|
|
164
|
+
if (!isStandardSyntaxDeclaration(decl)) return;
|
|
165
|
+
|
|
166
|
+
if (isDescriptorDeclaration(decl)) return;
|
|
167
|
+
|
|
168
|
+
if (!isStandardSyntaxProperty(prop)) return;
|
|
169
|
+
|
|
170
|
+
if (!isStandardSyntaxValue(value)) return;
|
|
171
|
+
|
|
172
|
+
if (isCustomProperty(prop) && !typedCustomPropertyNames.has(prop)) return;
|
|
173
|
+
|
|
174
|
+
if (isPropIgnored(prop, value)) return;
|
|
175
|
+
|
|
176
|
+
// TODO: csstree treats any value containing `var()` as valid, even if the `var()` expression itself is invalid.
|
|
177
|
+
// csstree should be updated to mark invalidate values that contain invalid `var()` expressions.
|
|
178
|
+
// skipping parsing by returning early until this is resolved upstream.
|
|
179
|
+
if (/\bvar\s*\(/i.test(value)) return;
|
|
180
|
+
|
|
181
|
+
const cacheKey = isCustomProperty(prop) ? null : `${prop}:${value}`;
|
|
182
|
+
|
|
183
|
+
if (cacheKey && validMatchesCache.has(cacheKey)) return;
|
|
184
|
+
|
|
185
|
+
// Check if value contains math functions that need validation
|
|
186
|
+
const [mathFuncResult, mathFuncResultStartOffset, mathFuncResultEndOffset] =
|
|
187
|
+
validateMathFunctions(value, prop, lexer, typedCustomPropertyNames);
|
|
188
|
+
|
|
189
|
+
if (mathFuncResult === 'valid' || mathFuncResult === 'skip-validation') {
|
|
190
|
+
if (cacheKey && validMatchesCache.size < MAX_CACHE_SIZE) validMatchesCache.add(cacheKey);
|
|
191
|
+
|
|
192
|
+
return;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
if (mathFuncResult === 'invalid') {
|
|
196
|
+
const valueIndex = declarationValueIndex(decl);
|
|
197
|
+
|
|
198
|
+
let expression = value;
|
|
199
|
+
let index = valueIndex;
|
|
200
|
+
let endIndex = index + expression.length;
|
|
201
|
+
|
|
202
|
+
if (mathFuncResultStartOffset !== -1 && mathFuncResultEndOffset !== -1) {
|
|
203
|
+
expression = value.slice(mathFuncResultStartOffset, mathFuncResultEndOffset);
|
|
204
|
+
|
|
205
|
+
index = valueIndex + mathFuncResultStartOffset;
|
|
206
|
+
endIndex = index + expression.length;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
report({
|
|
210
|
+
message: messages.rejectedMath,
|
|
211
|
+
messageArgs: [prop, expression],
|
|
212
|
+
node: decl,
|
|
213
|
+
index,
|
|
214
|
+
endIndex,
|
|
215
|
+
result,
|
|
216
|
+
ruleName,
|
|
217
|
+
});
|
|
218
|
+
|
|
219
|
+
return;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
/** @type {CssNode} */
|
|
223
|
+
let cssTreeValueNode;
|
|
224
|
+
|
|
225
|
+
try {
|
|
226
|
+
cssTreeValueNode = parse(value, { context: 'value', positions: true });
|
|
227
|
+
|
|
228
|
+
if (containsFunctionsNotSupportedInCSSTree(cssTreeValueNode)) return;
|
|
229
|
+
} catch {
|
|
230
|
+
// Ignore parse errors for `attr()`, `if()` and custom functions
|
|
231
|
+
// See: https://github.com/stylelint/stylelint/issues/8779
|
|
232
|
+
if (/(?:^|[^\w-])(?:attr|if|--[\w-]+)\(/i.test(value)) return;
|
|
233
|
+
|
|
234
|
+
const index = declarationValueIndex(decl);
|
|
235
|
+
const endIndex = index + value.length;
|
|
236
|
+
|
|
237
|
+
report({
|
|
238
|
+
message: messages.rejectedParseError,
|
|
239
|
+
messageArgs: [prop, value],
|
|
240
|
+
node: decl,
|
|
241
|
+
index,
|
|
242
|
+
endIndex,
|
|
243
|
+
result,
|
|
244
|
+
ruleName,
|
|
245
|
+
});
|
|
246
|
+
|
|
247
|
+
return;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
const { error } = lexer.matchProperty(
|
|
251
|
+
typedCustomPropertyNames.get(prop) ?? prop,
|
|
252
|
+
cssTreeValueNode,
|
|
253
|
+
);
|
|
254
|
+
|
|
255
|
+
if (!error) {
|
|
256
|
+
if (cacheKey && validMatchesCache.size < MAX_CACHE_SIZE) validMatchesCache.add(cacheKey);
|
|
257
|
+
|
|
258
|
+
return;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
if (!('mismatchLength' in error)) return;
|
|
262
|
+
|
|
263
|
+
const { name, rawMessage, loc } = error;
|
|
264
|
+
|
|
265
|
+
if (name !== 'SyntaxMatchError') return;
|
|
266
|
+
|
|
267
|
+
if (rawMessage !== 'Mismatch') return;
|
|
268
|
+
|
|
269
|
+
const valueIndex = declarationValueIndex(decl);
|
|
270
|
+
const mismatchValue = value.slice(loc.start.offset, loc.end.offset);
|
|
271
|
+
|
|
272
|
+
const functionNode = find(
|
|
273
|
+
cssTreeValueNode,
|
|
274
|
+
(node) =>
|
|
275
|
+
node.type === 'Function' &&
|
|
276
|
+
node.loc !== undefined &&
|
|
277
|
+
loc.start.offset >= node.loc.start.offset &&
|
|
278
|
+
loc.end.offset <= node.loc.end.offset,
|
|
279
|
+
);
|
|
280
|
+
|
|
281
|
+
if (functionNode?.loc) {
|
|
282
|
+
const valueFunction = value.slice(
|
|
283
|
+
functionNode.loc.start.offset,
|
|
284
|
+
functionNode.loc.end.offset,
|
|
285
|
+
);
|
|
286
|
+
|
|
287
|
+
const index = valueIndex + functionNode.loc.start.offset;
|
|
288
|
+
const endIndex = index + valueFunction.length;
|
|
289
|
+
|
|
290
|
+
report({
|
|
291
|
+
message: messages.rejected,
|
|
292
|
+
messageArgs: [prop, valueFunction],
|
|
293
|
+
node: decl,
|
|
294
|
+
index,
|
|
295
|
+
endIndex,
|
|
296
|
+
result,
|
|
297
|
+
ruleName,
|
|
298
|
+
});
|
|
299
|
+
|
|
300
|
+
return;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
report({
|
|
304
|
+
message: messages.rejected,
|
|
305
|
+
messageArgs: [prop, mismatchValue],
|
|
306
|
+
node: decl,
|
|
307
|
+
index: valueIndex + loc.start.offset,
|
|
308
|
+
endIndex: valueIndex + loc.end.offset,
|
|
309
|
+
result,
|
|
310
|
+
ruleName,
|
|
311
|
+
});
|
|
312
|
+
});
|
|
313
|
+
};
|
|
314
|
+
};
|
|
315
|
+
|
|
316
|
+
/**
|
|
317
|
+
* @see csstree/csstree#245 env
|
|
318
|
+
* @param {CssNode} cssTreeNode
|
|
319
|
+
* @returns {boolean}
|
|
320
|
+
*/
|
|
321
|
+
function containsFunctionsNotSupportedInCSSTree(cssTreeNode) {
|
|
322
|
+
return Boolean(
|
|
323
|
+
find(
|
|
324
|
+
cssTreeNode,
|
|
325
|
+
(node) =>
|
|
326
|
+
node.type === 'Function' && UNSUPPORTED_FUNCTIONS_IN_CSSTREE.has(node.name.toLowerCase()),
|
|
327
|
+
),
|
|
328
|
+
);
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
/**
|
|
332
|
+
* Detect `calc-size()` with the `size` keyword in its arguments.
|
|
333
|
+
*
|
|
334
|
+
* @param {Array<import('@csstools/css-parser-algorithms').ComponentValue>} componentValues
|
|
335
|
+
* @returns {boolean}
|
|
336
|
+
*/
|
|
337
|
+
function containsCalcSizeWithSizeKeyword(componentValues) {
|
|
338
|
+
let contains = false;
|
|
339
|
+
|
|
340
|
+
walk(componentValues, ({ node }) => {
|
|
341
|
+
if (!isFunctionNode(node) || node.getName().toLowerCase() !== 'calc-size') return;
|
|
342
|
+
|
|
343
|
+
contains = node
|
|
344
|
+
.tokens()
|
|
345
|
+
.some((token) => token[0] === TokenType.Ident && token[4]?.value.toLowerCase() === 'size');
|
|
346
|
+
|
|
347
|
+
if (contains) return false; // halt
|
|
348
|
+
});
|
|
349
|
+
|
|
350
|
+
return contains;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
/**
|
|
354
|
+
* Validate math functions (calc, min, max, clamp, etc.) in a CSS value.
|
|
355
|
+
* Uses @csstools/css-calc to solve expressions and validate the result.
|
|
356
|
+
*
|
|
357
|
+
* @param {string} value - The CSS property value
|
|
358
|
+
* @param {string} prop - The property name
|
|
359
|
+
* @param {ReturnType<import('css-tree')['fork']>['lexer']} lexer - The csstree lexer
|
|
360
|
+
* @param {Map<string, string>} typedCustomPropertyNames - Map of typed custom property names
|
|
361
|
+
* @returns {['undetermined' | 'valid' | 'invalid' | 'skip-validation', number, number]} - The validation result
|
|
362
|
+
*/
|
|
363
|
+
function validateMathFunctions(value, prop, lexer, typedCustomPropertyNames) {
|
|
364
|
+
// If the value doesn't contain any math functions, continue with normal validation
|
|
365
|
+
if (!mayIncludeRegexes.mathFunction.test(value)) return ['undetermined', -1, -1];
|
|
366
|
+
|
|
367
|
+
const nodes = parseListOfComponentValues(tokenize({ css: value }), {});
|
|
368
|
+
|
|
369
|
+
if (containsCalcSizeWithSizeKeyword(nodes)) {
|
|
370
|
+
return ['skip-validation', -1, -1];
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
/** @type {Array<ParseError>} */
|
|
374
|
+
const calcParseErrors = [];
|
|
375
|
+
|
|
376
|
+
// Try to solve the math expression
|
|
377
|
+
const solvedNodes = calcFromComponentValues([nodes], {
|
|
378
|
+
onParseError: (err) => {
|
|
379
|
+
calcParseErrors.push(err);
|
|
380
|
+
},
|
|
381
|
+
});
|
|
382
|
+
|
|
383
|
+
// Check if any known errors were detected during parsing
|
|
384
|
+
for (const calcParseError of calcParseErrors) {
|
|
385
|
+
switch (calcParseError.message) {
|
|
386
|
+
case ParseErrorMessage.UnexpectedAdditionOfDimensionOrPercentageWithNumber:
|
|
387
|
+
case ParseErrorMessage.UnexpectedSubtractionOfDimensionOrPercentageWithNumber:
|
|
388
|
+
return ['invalid', calcParseError.sourceStart, calcParseError.sourceEnd + 1];
|
|
389
|
+
|
|
390
|
+
default:
|
|
391
|
+
break;
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
const solvedValue = stringify(solvedNodes);
|
|
396
|
+
|
|
397
|
+
// For other cases where calc can't be fully solved (like 100% - 10px),
|
|
398
|
+
// skip validation and let csstree handle it (csstree allows these)
|
|
399
|
+
if (mayIncludeRegexes.mathFunction.test(solvedValue)) {
|
|
400
|
+
return ['undetermined', -1, -1];
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
// If the expression was fully solved (no more math functions),
|
|
404
|
+
// validate the result with csstree
|
|
405
|
+
try {
|
|
406
|
+
const solvedCssTreeNode = parse(solvedValue, { context: 'value', positions: true });
|
|
407
|
+
|
|
408
|
+
if (containsFunctionsNotSupportedInCSSTree(solvedCssTreeNode)) {
|
|
409
|
+
return ['skip-validation', -1, -1];
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
const { error } = lexer.matchProperty(
|
|
413
|
+
typedCustomPropertyNames.get(prop) ?? prop,
|
|
414
|
+
solvedCssTreeNode,
|
|
415
|
+
);
|
|
416
|
+
|
|
417
|
+
// If the solved value is valid, skip further validation
|
|
418
|
+
if (!error) return ['valid', -1, -1];
|
|
419
|
+
|
|
420
|
+
// If the solved value is invalid, it means the calc result type doesn't match the property
|
|
421
|
+
// e.g., calc(2) for height: results in a number "2", but height expects a length
|
|
422
|
+
if (
|
|
423
|
+
'mismatchLength' in error &&
|
|
424
|
+
error.name === 'SyntaxMatchError' &&
|
|
425
|
+
error.rawMessage === 'Mismatch'
|
|
426
|
+
) {
|
|
427
|
+
const startOffset = error.loc.start.offset;
|
|
428
|
+
const endOffset = error.loc.end.offset;
|
|
429
|
+
|
|
430
|
+
// Lookup the original source position of the invalid expression
|
|
431
|
+
// by finding the tokens that correspond to the positions reported by csstree
|
|
432
|
+
const solvedTokens = solvedNodes.flatMap((componentValues) =>
|
|
433
|
+
componentValues.flatMap((node) => node.tokens()),
|
|
434
|
+
);
|
|
435
|
+
let counter = 0;
|
|
436
|
+
let startToken;
|
|
437
|
+
let endToken;
|
|
438
|
+
|
|
439
|
+
solvedTokens.forEach((token) => {
|
|
440
|
+
if (startOffset === counter) {
|
|
441
|
+
startToken = token;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
counter += token[1].length;
|
|
445
|
+
|
|
446
|
+
if (endOffset === counter) {
|
|
447
|
+
endToken = token;
|
|
448
|
+
}
|
|
449
|
+
});
|
|
450
|
+
|
|
451
|
+
if (!startToken || !endToken) return ['invalid', -1, -1];
|
|
452
|
+
|
|
453
|
+
return ['invalid', startToken[2], endToken[3] + 1];
|
|
454
|
+
}
|
|
455
|
+
} catch {
|
|
456
|
+
// If parsing fails, continue with normal validation
|
|
457
|
+
return ['undetermined', -1, -1];
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
return ['undetermined', -1, -1];
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
rule.ruleName = ruleName;
|
|
464
|
+
rule.messages = messages;
|
|
465
|
+
rule.meta = meta;
|
|
466
|
+
export default rule;
|
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
import {
|
|
2
|
+
TokenType,
|
|
3
|
+
isTokenComment,
|
|
4
|
+
isTokenEOF,
|
|
5
|
+
isTokenIdent,
|
|
6
|
+
isTokenWhiteSpaceOrComment,
|
|
7
|
+
stringify,
|
|
8
|
+
tokenize,
|
|
9
|
+
} from '@csstools/css-tokenizer';
|
|
10
|
+
|
|
11
|
+
import {
|
|
12
|
+
displayInsideKeywords,
|
|
13
|
+
displayListItemKeyword,
|
|
14
|
+
displayOutsideKeywords,
|
|
15
|
+
} from '../../reference/keywords.mjs';
|
|
16
|
+
import { declarationValueIndex } from '../../utils/nodeFieldIndices.mjs';
|
|
17
|
+
import getDeclarationValue from '../../utils/getDeclarationValue.mjs';
|
|
18
|
+
import isStandardSyntaxValue from '../../utils/isStandardSyntaxValue.mjs';
|
|
19
|
+
import { mayIncludeRegexes } from '../../utils/regexes.mjs';
|
|
20
|
+
import report from '../../utils/report.mjs';
|
|
21
|
+
import ruleMessages from '../../utils/ruleMessages.mjs';
|
|
22
|
+
import setDeclarationValue from '../../utils/setDeclarationValue.mjs';
|
|
23
|
+
import validateOptions from '../../utils/validateOptions.mjs';
|
|
24
|
+
|
|
25
|
+
/** @import {CSSToken,TokenIdent} from '@csstools/css-tokenizer' */
|
|
26
|
+
|
|
27
|
+
const ruleName = 'display-notation';
|
|
28
|
+
|
|
29
|
+
const messages = ruleMessages(ruleName, {
|
|
30
|
+
expected: (unexpected, expected) => `Expected "${unexpected}" to be "${expected}"`,
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
const meta = {
|
|
34
|
+
url: 'https://stylelint.io/user-guide/rules/display-notation',
|
|
35
|
+
fixable: true,
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
const DISPLAY_OUTSIDE = new RegExp(`^(?:${[...displayOutsideKeywords.values()].join('|')})$`, 'i');
|
|
39
|
+
const DISPLAY_INSIDE = new RegExp(`^(?:${[...displayInsideKeywords.values()].join('|')})$`, 'i');
|
|
40
|
+
const DISPLAY_LIST_ITEM = new RegExp(
|
|
41
|
+
`^(?:${[...displayListItemKeyword.values()].join('|')})$`,
|
|
42
|
+
'i',
|
|
43
|
+
);
|
|
44
|
+
|
|
45
|
+
const DISPLAY_PROPERTY = /^display$/i;
|
|
46
|
+
|
|
47
|
+
/** @type {Record<string, Array<string>>} */
|
|
48
|
+
const SHORT_TO_LONG = {
|
|
49
|
+
'block list-item': ['block', 'flow', 'list-item'],
|
|
50
|
+
block: ['block', 'flow'],
|
|
51
|
+
flex: ['block', 'flex'],
|
|
52
|
+
'flow list-item': ['block', 'flow', 'list-item'],
|
|
53
|
+
flow: ['block', 'flow'],
|
|
54
|
+
'flow-root': ['block', 'flow-root'],
|
|
55
|
+
grid: ['block', 'grid'],
|
|
56
|
+
'inline list-item': ['inline', 'flow', 'list-item'],
|
|
57
|
+
inline: ['inline', 'flow'],
|
|
58
|
+
'inline-block': ['inline', 'flow-root'],
|
|
59
|
+
'inline-flex': ['inline', 'flex'],
|
|
60
|
+
'inline-grid': ['inline', 'grid'],
|
|
61
|
+
'inline-table': ['inline', 'table'],
|
|
62
|
+
'list-item': ['block', 'flow', 'list-item'],
|
|
63
|
+
ruby: ['inline', 'ruby'],
|
|
64
|
+
'run-in': ['run-in', 'flow'],
|
|
65
|
+
table: ['block', 'table'],
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
/** @type {Record<string, Array<string>>} */
|
|
69
|
+
const LONG_TO_SHORT = {
|
|
70
|
+
'block flex': ['flex'],
|
|
71
|
+
'block flow list-item': ['list-item'],
|
|
72
|
+
'block flow': ['block'],
|
|
73
|
+
'block flow-root': ['flow-root'],
|
|
74
|
+
'block grid': ['grid'],
|
|
75
|
+
'block list-item': ['list-item'],
|
|
76
|
+
'block table': ['table'],
|
|
77
|
+
'flow list-item': ['list-item'],
|
|
78
|
+
'inline flex': ['inline-flex'],
|
|
79
|
+
'inline flow list-item': ['inline', 'list-item'],
|
|
80
|
+
'inline flow': ['inline'],
|
|
81
|
+
'inline flow-root': ['inline-block'],
|
|
82
|
+
'inline grid': ['inline-grid'],
|
|
83
|
+
'inline ruby': ['ruby'],
|
|
84
|
+
'inline table': ['inline-table'],
|
|
85
|
+
'run-in flow': ['run-in'],
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
/** @type {import('stylelint').CoreRules[ruleName]} */
|
|
89
|
+
const rule = (primary) => {
|
|
90
|
+
return (root, result) => {
|
|
91
|
+
const validOptions = validateOptions(result, ruleName, {
|
|
92
|
+
actual: primary,
|
|
93
|
+
possible: ['short', 'full'],
|
|
94
|
+
});
|
|
95
|
+
|
|
96
|
+
if (!validOptions) return;
|
|
97
|
+
|
|
98
|
+
root.walkDecls(DISPLAY_PROPERTY, (decl) => {
|
|
99
|
+
const value = getDeclarationValue(decl);
|
|
100
|
+
|
|
101
|
+
if (!mayIncludeRegexes.displayKeyword.test(value)) return;
|
|
102
|
+
|
|
103
|
+
if (!isStandardSyntaxValue(value)) return;
|
|
104
|
+
|
|
105
|
+
const tokens = tokenize({ css: value });
|
|
106
|
+
|
|
107
|
+
// ignore values that contain functions or other non-keyword values
|
|
108
|
+
const hasNonKeywordTokens = tokens.some(
|
|
109
|
+
(token) => !(isTokenWhiteSpaceOrComment(token) || isTokenEOF(token) || isTokenIdent(token)),
|
|
110
|
+
);
|
|
111
|
+
|
|
112
|
+
if (hasNonKeywordTokens) return;
|
|
113
|
+
|
|
114
|
+
const keywords = tokens.filter(isTokenIdent);
|
|
115
|
+
|
|
116
|
+
if (!keywords.length) return;
|
|
117
|
+
|
|
118
|
+
const normalizedValue = normalizeValue(keywords);
|
|
119
|
+
|
|
120
|
+
const replacementValue =
|
|
121
|
+
primary === 'short' ? LONG_TO_SHORT[normalizedValue] : SHORT_TO_LONG[normalizedValue];
|
|
122
|
+
|
|
123
|
+
if (!replacementValue) return;
|
|
124
|
+
|
|
125
|
+
const firstKeyword = keywords.at(0);
|
|
126
|
+
const lastKeyword = keywords.at(-1);
|
|
127
|
+
|
|
128
|
+
if (!firstKeyword || !lastKeyword) return;
|
|
129
|
+
|
|
130
|
+
const index = declarationValueIndex(decl);
|
|
131
|
+
|
|
132
|
+
report({
|
|
133
|
+
message: messages.expected,
|
|
134
|
+
messageArgs: [normalizedValue, replacementValue.join(' ')],
|
|
135
|
+
node: decl,
|
|
136
|
+
index: index + firstKeyword[2],
|
|
137
|
+
endIndex: index + lastKeyword[3] + 1,
|
|
138
|
+
result,
|
|
139
|
+
ruleName,
|
|
140
|
+
fix: {
|
|
141
|
+
apply: () => {
|
|
142
|
+
setDeclarationValue(
|
|
143
|
+
decl,
|
|
144
|
+
fixValue(tokens, firstKeyword, lastKeyword, replacementValue),
|
|
145
|
+
);
|
|
146
|
+
},
|
|
147
|
+
node: decl,
|
|
148
|
+
},
|
|
149
|
+
});
|
|
150
|
+
});
|
|
151
|
+
};
|
|
152
|
+
};
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* @param {string} a
|
|
156
|
+
* @returns {number}
|
|
157
|
+
*/
|
|
158
|
+
function keywordOrder(a) {
|
|
159
|
+
if (DISPLAY_OUTSIDE.test(a)) return 1;
|
|
160
|
+
|
|
161
|
+
if (DISPLAY_INSIDE.test(a)) return 2;
|
|
162
|
+
|
|
163
|
+
if (DISPLAY_LIST_ITEM.test(a)) return 3;
|
|
164
|
+
|
|
165
|
+
return 0;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
/**
|
|
169
|
+
* @param {string} a
|
|
170
|
+
* @param {string} b
|
|
171
|
+
* @returns {number}
|
|
172
|
+
*/
|
|
173
|
+
function compareKeywords(a, b) {
|
|
174
|
+
return keywordOrder(a) - keywordOrder(b);
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
/**
|
|
178
|
+
* @param {Array<TokenIdent>} tokens
|
|
179
|
+
* @returns {string}
|
|
180
|
+
*/
|
|
181
|
+
function normalizeValue(tokens) {
|
|
182
|
+
return tokens
|
|
183
|
+
.map((token) => token[4].value)
|
|
184
|
+
.sort(compareKeywords)
|
|
185
|
+
.join(' ')
|
|
186
|
+
.toLowerCase();
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
/**
|
|
190
|
+
* @param {Array<CSSToken>} originalValue
|
|
191
|
+
* @param {TokenIdent} firstKeyword
|
|
192
|
+
* @param {TokenIdent} lastKeyword
|
|
193
|
+
* @param {Array<string>} replacement
|
|
194
|
+
* @returns {string}
|
|
195
|
+
*/
|
|
196
|
+
function fixValue(originalValue, firstKeyword, lastKeyword, replacement) {
|
|
197
|
+
const before = originalValue.slice(0, originalValue.indexOf(firstKeyword));
|
|
198
|
+
const commentsBetweenKeywords = originalValue
|
|
199
|
+
.slice(originalValue.indexOf(firstKeyword), originalValue.indexOf(lastKeyword))
|
|
200
|
+
.filter(isTokenComment);
|
|
201
|
+
const after = originalValue.slice(originalValue.indexOf(lastKeyword) + 1);
|
|
202
|
+
|
|
203
|
+
return stringify(
|
|
204
|
+
...before,
|
|
205
|
+
...replacement.flatMap((keyword, index) => {
|
|
206
|
+
/** @type {Array<CSSToken>} */
|
|
207
|
+
const tokens = [];
|
|
208
|
+
|
|
209
|
+
if (index !== 0) {
|
|
210
|
+
tokens.push([TokenType.Whitespace, ' ', -1, -1, undefined]);
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
tokens.push([TokenType.Ident, keyword, -1, -1, { value: keyword }]);
|
|
214
|
+
|
|
215
|
+
return tokens;
|
|
216
|
+
}),
|
|
217
|
+
...commentsBetweenKeywords,
|
|
218
|
+
...after,
|
|
219
|
+
);
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
rule.ruleName = ruleName;
|
|
223
|
+
rule.messages = messages;
|
|
224
|
+
rule.meta = meta;
|
|
225
|
+
export default rule;
|