@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,63 @@
|
|
|
1
|
+
import { isRegExp, isString } from '../../utils/validateTypes.mjs';
|
|
2
|
+
import containsString from '../../utils/containsString.mjs';
|
|
3
|
+
import matchesStringOrRegExp from '../../utils/matchesStringOrRegExp.mjs';
|
|
4
|
+
import report from '../../utils/report.mjs';
|
|
5
|
+
import ruleMessages from '../../utils/ruleMessages.mjs';
|
|
6
|
+
import validateOptions from '../../utils/validateOptions.mjs';
|
|
7
|
+
|
|
8
|
+
const ruleName = 'comment-word-disallowed-list';
|
|
9
|
+
|
|
10
|
+
const messages = ruleMessages(ruleName, {
|
|
11
|
+
rejected: (pattern) => `Unexpected word matching pattern "${pattern}"`,
|
|
12
|
+
});
|
|
13
|
+
|
|
14
|
+
const meta = {
|
|
15
|
+
url: 'https://stylelint.io/user-guide/rules/comment-word-disallowed-list',
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
/** @type {import('stylelint').CoreRules[ruleName]} */
|
|
19
|
+
const rule = (primary) => {
|
|
20
|
+
return (root, result) => {
|
|
21
|
+
const validOptions = validateOptions(result, ruleName, {
|
|
22
|
+
actual: primary,
|
|
23
|
+
possible: [isString, isRegExp],
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
if (!validOptions) {
|
|
27
|
+
return;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
root.walkComments((comment) => {
|
|
31
|
+
const text = comment.text;
|
|
32
|
+
const rawComment = comment.toString();
|
|
33
|
+
const firstFourChars = rawComment.slice(0, 4);
|
|
34
|
+
|
|
35
|
+
// Return early if sourcemap
|
|
36
|
+
if (firstFourChars === '/*# ') {
|
|
37
|
+
return;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
const matchesWord = matchesStringOrRegExp(text, primary) || containsString(text, primary);
|
|
41
|
+
|
|
42
|
+
if (!matchesWord) {
|
|
43
|
+
return;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
report({
|
|
47
|
+
message: messages.rejected,
|
|
48
|
+
messageArgs: [matchesWord.pattern],
|
|
49
|
+
node: comment,
|
|
50
|
+
word: matchesWord.substring,
|
|
51
|
+
result,
|
|
52
|
+
ruleName,
|
|
53
|
+
});
|
|
54
|
+
});
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
rule.primaryOptionArray = true;
|
|
59
|
+
|
|
60
|
+
rule.ruleName = ruleName;
|
|
61
|
+
rule.messages = messages;
|
|
62
|
+
rule.meta = meta;
|
|
63
|
+
export default rule;
|
package/packages/config-stylelint/node_modules/stylelint/lib/rules/container-name-pattern/index.mjs
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import valueParser from 'postcss-value-parser';
|
|
2
|
+
|
|
3
|
+
import { atRuleParamIndex, declarationValueIndex } from '../../utils/nodeFieldIndices.mjs';
|
|
4
|
+
import { atRuleRegexes, propertyRegexes } from '../../utils/regexes.mjs';
|
|
5
|
+
import { isRegExp, isString } from '../../utils/validateTypes.mjs';
|
|
6
|
+
import { basicKeywords } from '../../reference/keywords.mjs';
|
|
7
|
+
import isStandardSyntaxAtRule from '../../utils/isStandardSyntaxAtRule.mjs';
|
|
8
|
+
import isStandardSyntaxDeclaration from '../../utils/isStandardSyntaxDeclaration.mjs';
|
|
9
|
+
import isStandardSyntaxValue from '../../utils/isStandardSyntaxValue.mjs';
|
|
10
|
+
import report from '../../utils/report.mjs';
|
|
11
|
+
import ruleMessages from '../../utils/ruleMessages.mjs';
|
|
12
|
+
import validateOptions from '../../utils/validateOptions.mjs';
|
|
13
|
+
|
|
14
|
+
const ruleName = 'container-name-pattern';
|
|
15
|
+
|
|
16
|
+
const messages = ruleMessages(ruleName, {
|
|
17
|
+
expected: (containerName, pattern) => `Expected "${containerName}" to match pattern "${pattern}"`,
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
const meta = {
|
|
21
|
+
url: 'https://stylelint.io/user-guide/rules/container-name-pattern',
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
const KEYWORDS = new Set(['and', 'or', 'none', 'not']);
|
|
25
|
+
|
|
26
|
+
/** @type {import('stylelint').CoreRules[ruleName]} */
|
|
27
|
+
const rule = (primary) => {
|
|
28
|
+
return (root, result) => {
|
|
29
|
+
const validOptions = validateOptions(result, ruleName, {
|
|
30
|
+
actual: primary,
|
|
31
|
+
possible: [isRegExp, isString],
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
if (!validOptions) return;
|
|
35
|
+
|
|
36
|
+
const regex = isString(primary) ? new RegExp(primary) : primary;
|
|
37
|
+
|
|
38
|
+
const languageCssWideKeywords =
|
|
39
|
+
result.stylelint.config?.languageOptions?.syntax?.cssWideKeywords ?? [];
|
|
40
|
+
|
|
41
|
+
const cssWideKeywords = new Set([...basicKeywords, ...languageCssWideKeywords]);
|
|
42
|
+
|
|
43
|
+
root.walkDecls(propertyRegexes.containerNameAndShorthandName, (decl) => {
|
|
44
|
+
if (!isStandardSyntaxDeclaration(decl)) return;
|
|
45
|
+
|
|
46
|
+
const parsedValue = valueParser(decl.value);
|
|
47
|
+
|
|
48
|
+
let isContainerType = false;
|
|
49
|
+
|
|
50
|
+
parsedValue.walk(({ sourceIndex, type, value }) => {
|
|
51
|
+
if (isContainerType) return;
|
|
52
|
+
|
|
53
|
+
if (type === 'div' && value === '/') isContainerType = true;
|
|
54
|
+
|
|
55
|
+
if (type !== 'word') return false;
|
|
56
|
+
|
|
57
|
+
if (cssWideKeywords.has(value.toLowerCase())) return;
|
|
58
|
+
|
|
59
|
+
if (!isStandardSyntaxValue(value)) return;
|
|
60
|
+
|
|
61
|
+
if (regex.test(value)) return;
|
|
62
|
+
|
|
63
|
+
complain(declarationValueIndex(decl) + sourceIndex, value, decl);
|
|
64
|
+
});
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
root.walkAtRules(atRuleRegexes.containerName, (atRule) => {
|
|
68
|
+
if (!isStandardSyntaxAtRule(atRule)) return;
|
|
69
|
+
|
|
70
|
+
const { params } = atRule;
|
|
71
|
+
|
|
72
|
+
const parsedValue = valueParser(params);
|
|
73
|
+
|
|
74
|
+
parsedValue.walk(({ sourceIndex, type, value }) => {
|
|
75
|
+
if (type !== 'word') return false;
|
|
76
|
+
|
|
77
|
+
if (KEYWORDS.has(value.toLowerCase())) return;
|
|
78
|
+
|
|
79
|
+
if (regex.test(value)) return;
|
|
80
|
+
|
|
81
|
+
complain(atRuleParamIndex(atRule) + sourceIndex, value, atRule);
|
|
82
|
+
});
|
|
83
|
+
});
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* @param {number} index
|
|
87
|
+
* @param {string} containerName
|
|
88
|
+
* @param {import('postcss').Declaration|import('postcss').AtRule} node
|
|
89
|
+
*/
|
|
90
|
+
function complain(index, containerName, node) {
|
|
91
|
+
report({
|
|
92
|
+
result,
|
|
93
|
+
ruleName,
|
|
94
|
+
message: messages.expected,
|
|
95
|
+
messageArgs: [containerName, primary],
|
|
96
|
+
node,
|
|
97
|
+
index,
|
|
98
|
+
endIndex: index + containerName.length,
|
|
99
|
+
});
|
|
100
|
+
}
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
|
|
104
|
+
rule.ruleName = ruleName;
|
|
105
|
+
rule.messages = messages;
|
|
106
|
+
rule.meta = meta;
|
|
107
|
+
export default rule;
|
package/packages/config-stylelint/node_modules/stylelint/lib/rules/custom-media-pattern/index.mjs
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { isRegExp, isString } from '../../utils/validateTypes.mjs';
|
|
2
|
+
import { atRuleParamIndex } from '../../utils/nodeFieldIndices.mjs';
|
|
3
|
+
import { atRuleRegexes } from '../../utils/regexes.mjs';
|
|
4
|
+
import report from '../../utils/report.mjs';
|
|
5
|
+
import ruleMessages from '../../utils/ruleMessages.mjs';
|
|
6
|
+
import validateOptions from '../../utils/validateOptions.mjs';
|
|
7
|
+
|
|
8
|
+
const ruleName = 'custom-media-pattern';
|
|
9
|
+
|
|
10
|
+
const messages = ruleMessages(ruleName, {
|
|
11
|
+
expected: (mediaName, pattern) => `Expected "${mediaName}" to match pattern "${pattern}"`,
|
|
12
|
+
});
|
|
13
|
+
|
|
14
|
+
const meta = {
|
|
15
|
+
url: 'https://stylelint.io/user-guide/rules/custom-media-pattern',
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
/** @type {import('stylelint').CoreRules[ruleName]} */
|
|
19
|
+
const rule = (primary) => {
|
|
20
|
+
return (root, result) => {
|
|
21
|
+
const validOptions = validateOptions(result, ruleName, {
|
|
22
|
+
actual: primary,
|
|
23
|
+
possible: [isRegExp, isString],
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
if (!validOptions) {
|
|
27
|
+
return;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
const regexpPattern = isString(primary) ? new RegExp(primary) : primary;
|
|
31
|
+
|
|
32
|
+
root.walkAtRules(atRuleRegexes.customMediaName, (atRule) => {
|
|
33
|
+
const [fullName, customMediaName] = atRule.params.match(/^--(\S+)\b/) || [];
|
|
34
|
+
|
|
35
|
+
if (fullName === undefined || customMediaName === undefined) {
|
|
36
|
+
throw new Error(`Unexpected at-rule params: "${atRule.params}"`);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
if (regexpPattern.test(customMediaName)) {
|
|
40
|
+
return;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
const index = atRuleParamIndex(atRule);
|
|
44
|
+
|
|
45
|
+
report({
|
|
46
|
+
message: messages.expected,
|
|
47
|
+
messageArgs: [fullName, primary],
|
|
48
|
+
node: atRule,
|
|
49
|
+
index,
|
|
50
|
+
endIndex: index + fullName.length,
|
|
51
|
+
result,
|
|
52
|
+
ruleName,
|
|
53
|
+
});
|
|
54
|
+
});
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
rule.ruleName = ruleName;
|
|
59
|
+
rule.messages = messages;
|
|
60
|
+
rule.meta = meta;
|
|
61
|
+
export default rule;
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
import { isAtRule, isDeclaration, isRule } from '../../utils/typeGuards.mjs';
|
|
2
|
+
import blockString from '../../utils/blockString.mjs';
|
|
3
|
+
import fixEmptyLinesBefore from '../../utils/fixEmptyLinesBefore.mjs';
|
|
4
|
+
import getPreviousNonSharedLineCommentNode from '../../utils/getPreviousNonSharedLineCommentNode.mjs';
|
|
5
|
+
import hasEmptyLine from '../../utils/hasEmptyLine.mjs';
|
|
6
|
+
import isAfterBlock from '../../utils/isAfterBlock.mjs';
|
|
7
|
+
import isAfterComment from '../../utils/isAfterComment.mjs';
|
|
8
|
+
import isCustomProperty from '../../utils/isCustomProperty.mjs';
|
|
9
|
+
import isFirstNested from '../../utils/isFirstNested.mjs';
|
|
10
|
+
import isSingleLineString from '../../utils/isSingleLineString.mjs';
|
|
11
|
+
import isStandardSyntaxDeclaration from '../../utils/isStandardSyntaxDeclaration.mjs';
|
|
12
|
+
import optionsMatches from '../../utils/optionsMatches.mjs';
|
|
13
|
+
import report from '../../utils/report.mjs';
|
|
14
|
+
import ruleMessages from '../../utils/ruleMessages.mjs';
|
|
15
|
+
import validateOptions from '../../utils/validateOptions.mjs';
|
|
16
|
+
|
|
17
|
+
const ruleName = 'custom-property-empty-line-before';
|
|
18
|
+
|
|
19
|
+
const messages = ruleMessages(ruleName, {
|
|
20
|
+
expected: 'Expected empty line before custom property',
|
|
21
|
+
rejected: 'Unexpected empty line before custom property',
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const meta = {
|
|
25
|
+
url: 'https://stylelint.io/user-guide/rules/custom-property-empty-line-before',
|
|
26
|
+
fixable: true,
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
/** @type {import('stylelint').CoreRules[ruleName]} */
|
|
30
|
+
const rule = (primary, secondaryOptions, context) => {
|
|
31
|
+
return (root, result) => {
|
|
32
|
+
const validOptions = validateOptions(
|
|
33
|
+
result,
|
|
34
|
+
ruleName,
|
|
35
|
+
{
|
|
36
|
+
actual: primary,
|
|
37
|
+
possible: ['always', 'never'],
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
actual: secondaryOptions,
|
|
41
|
+
possible: {
|
|
42
|
+
except: ['after-block', 'after-comment', 'after-custom-property', 'first-nested'],
|
|
43
|
+
ignore: [
|
|
44
|
+
'after-comment',
|
|
45
|
+
'after-custom-property',
|
|
46
|
+
'first-nested',
|
|
47
|
+
'inside-single-line-block',
|
|
48
|
+
],
|
|
49
|
+
},
|
|
50
|
+
optional: true,
|
|
51
|
+
},
|
|
52
|
+
);
|
|
53
|
+
|
|
54
|
+
if (!validOptions) {
|
|
55
|
+
return;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
root.walkDecls((decl) => {
|
|
59
|
+
const prop = decl.prop;
|
|
60
|
+
const parent = decl.parent;
|
|
61
|
+
|
|
62
|
+
if (!isStandardSyntaxDeclaration(decl)) {
|
|
63
|
+
return;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
if (!isCustomProperty(prop)) {
|
|
67
|
+
return;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
// Optionally ignore the node if a comment precedes it
|
|
71
|
+
if (optionsMatches(secondaryOptions, 'ignore', 'after-comment') && isAfterComment(decl)) {
|
|
72
|
+
return;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
// Optionally ignore the node if a custom property precedes it
|
|
76
|
+
if (
|
|
77
|
+
optionsMatches(secondaryOptions, 'ignore', 'after-custom-property') &&
|
|
78
|
+
isAfterCustomProperty(decl)
|
|
79
|
+
) {
|
|
80
|
+
return;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
// Optionally ignore the node if it is the first nested
|
|
84
|
+
if (optionsMatches(secondaryOptions, 'ignore', 'first-nested') && isFirstNested(decl)) {
|
|
85
|
+
return;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
// Optionally ignore nodes inside single-line blocks
|
|
89
|
+
if (
|
|
90
|
+
optionsMatches(secondaryOptions, 'ignore', 'inside-single-line-block') &&
|
|
91
|
+
parent != null &&
|
|
92
|
+
(isAtRule(parent) || isRule(parent)) &&
|
|
93
|
+
isSingleLineString(blockString(parent))
|
|
94
|
+
) {
|
|
95
|
+
return;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
let expectEmptyLineBefore = primary === 'always';
|
|
99
|
+
|
|
100
|
+
// Optionally reverse the expectation if any exceptions apply
|
|
101
|
+
if (
|
|
102
|
+
(optionsMatches(secondaryOptions, 'except', 'first-nested') && isFirstNested(decl)) ||
|
|
103
|
+
(optionsMatches(secondaryOptions, 'except', 'after-block') && isAfterBlock(decl)) ||
|
|
104
|
+
(optionsMatches(secondaryOptions, 'except', 'after-comment') && isAfterComment(decl)) ||
|
|
105
|
+
(optionsMatches(secondaryOptions, 'except', 'after-custom-property') &&
|
|
106
|
+
isAfterCustomProperty(decl))
|
|
107
|
+
) {
|
|
108
|
+
expectEmptyLineBefore = !expectEmptyLineBefore;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
const hasEmptyLineBefore = hasEmptyLine(decl.raws.before);
|
|
112
|
+
|
|
113
|
+
// Return if the expectation is met
|
|
114
|
+
if (expectEmptyLineBefore === hasEmptyLineBefore) {
|
|
115
|
+
return;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
const message = expectEmptyLineBefore ? messages.expected : messages.rejected;
|
|
119
|
+
const action = expectEmptyLineBefore ? 'add' : 'remove';
|
|
120
|
+
|
|
121
|
+
// Fix
|
|
122
|
+
const fix = () =>
|
|
123
|
+
fixEmptyLinesBefore({
|
|
124
|
+
node: decl,
|
|
125
|
+
newline: context.newline,
|
|
126
|
+
action,
|
|
127
|
+
});
|
|
128
|
+
|
|
129
|
+
report({
|
|
130
|
+
message,
|
|
131
|
+
messageArgs: [],
|
|
132
|
+
node: decl,
|
|
133
|
+
result,
|
|
134
|
+
ruleName,
|
|
135
|
+
fix: {
|
|
136
|
+
apply: fix,
|
|
137
|
+
node: decl.parent,
|
|
138
|
+
},
|
|
139
|
+
});
|
|
140
|
+
});
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
|
|
144
|
+
/**
|
|
145
|
+
* @param {import('postcss').Declaration} decl
|
|
146
|
+
*/
|
|
147
|
+
function isAfterCustomProperty(decl) {
|
|
148
|
+
const prevNode = getPreviousNonSharedLineCommentNode(decl);
|
|
149
|
+
|
|
150
|
+
return prevNode != null && isDeclaration(prevNode) && isCustomProperty(prevNode.prop);
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
rule.ruleName = ruleName;
|
|
154
|
+
rule.messages = messages;
|
|
155
|
+
rule.meta = meta;
|
|
156
|
+
export default rule;
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
import valueParser from 'postcss-value-parser';
|
|
2
|
+
|
|
3
|
+
import { atRuleRegexes, mayIncludeRegexes, propertyRegexes } from '../../utils/regexes.mjs';
|
|
4
|
+
import { declarationValueIndex } from '../../utils/nodeFieldIndices.mjs';
|
|
5
|
+
import isVarFunction from '../../utils/isVarFunction.mjs';
|
|
6
|
+
import report from '../../utils/report.mjs';
|
|
7
|
+
import ruleMessages from '../../utils/ruleMessages.mjs';
|
|
8
|
+
import validateOptions from '../../utils/validateOptions.mjs';
|
|
9
|
+
|
|
10
|
+
const ruleName = 'custom-property-no-missing-var-function';
|
|
11
|
+
|
|
12
|
+
const messages = ruleMessages(ruleName, {
|
|
13
|
+
rejected: (customProperty) => `Unexpected missing var function for "${customProperty}"`,
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
const meta = {
|
|
17
|
+
url: 'https://stylelint.io/user-guide/rules/custom-property-no-missing-var-function',
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
/** @typedef {import('postcss-value-parser').Node} Node */
|
|
21
|
+
|
|
22
|
+
// Properties that can receive a custom-ident
|
|
23
|
+
const IGNORED_PROPERTIES = new Set([
|
|
24
|
+
'animation',
|
|
25
|
+
'animation-name',
|
|
26
|
+
'container-name',
|
|
27
|
+
'counter-increment',
|
|
28
|
+
'counter-reset',
|
|
29
|
+
'counter-set',
|
|
30
|
+
'grid-column',
|
|
31
|
+
'grid-column-end',
|
|
32
|
+
'grid-column-start',
|
|
33
|
+
'grid-row',
|
|
34
|
+
'grid-row-end',
|
|
35
|
+
'grid-row-start',
|
|
36
|
+
'list-style',
|
|
37
|
+
'list-style-type',
|
|
38
|
+
'transition',
|
|
39
|
+
'transition-property',
|
|
40
|
+
'view-transition-name',
|
|
41
|
+
'will-change',
|
|
42
|
+
]);
|
|
43
|
+
|
|
44
|
+
/** @type {import('stylelint').CoreRules[ruleName]} */
|
|
45
|
+
const rule = (primary) => {
|
|
46
|
+
return (root, result) => {
|
|
47
|
+
const validOptions = validateOptions(result, ruleName, { actual: primary });
|
|
48
|
+
|
|
49
|
+
if (!validOptions) return;
|
|
50
|
+
|
|
51
|
+
/** @type {Set<string>} */
|
|
52
|
+
const knownCustomProperties = new Set();
|
|
53
|
+
|
|
54
|
+
root.walkAtRules(atRuleRegexes.propertyName, ({ params }) => {
|
|
55
|
+
knownCustomProperties.add(params);
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
root.walkDecls(propertyRegexes.custom, ({ prop }) => {
|
|
59
|
+
knownCustomProperties.add(prop);
|
|
60
|
+
});
|
|
61
|
+
|
|
62
|
+
root.walkDecls((decl) => {
|
|
63
|
+
const { prop, value } = decl;
|
|
64
|
+
|
|
65
|
+
if (!mayIncludeRegexes.customProperty.test(value)) return;
|
|
66
|
+
|
|
67
|
+
if (IGNORED_PROPERTIES.has(prop.toLowerCase())) return;
|
|
68
|
+
|
|
69
|
+
valueParser(value).nodes.forEach((childNode) => {
|
|
70
|
+
check(childNode, decl);
|
|
71
|
+
});
|
|
72
|
+
});
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* @param {Node} node
|
|
76
|
+
* @param {import('postcss').Declaration} decl
|
|
77
|
+
*/
|
|
78
|
+
function check(node, decl) {
|
|
79
|
+
if (node.type === 'function') {
|
|
80
|
+
const name = node.value.toLowerCase();
|
|
81
|
+
|
|
82
|
+
let args = node.nodes;
|
|
83
|
+
|
|
84
|
+
if (name === 'var') args = node.nodes.slice(1);
|
|
85
|
+
else if (name === 'running') {
|
|
86
|
+
const [child] = node.nodes;
|
|
87
|
+
const mustDrill = child && isVarFunction(child);
|
|
88
|
+
|
|
89
|
+
if (mustDrill) args = child.nodes.slice(1);
|
|
90
|
+
else return;
|
|
91
|
+
} else if (name === 'style') {
|
|
92
|
+
// For style() queries, only exempt the property name (first word before colon)
|
|
93
|
+
// but still check the value part after the colon
|
|
94
|
+
let foundColon = false;
|
|
95
|
+
|
|
96
|
+
node.nodes.forEach((arg) => {
|
|
97
|
+
if (arg.type === 'div' && arg.value === ':') {
|
|
98
|
+
foundColon = true;
|
|
99
|
+
} else if (!foundColon && isDashedIdent(arg)) {
|
|
100
|
+
// This is the property name in the query - skip it
|
|
101
|
+
} else if (foundColon) {
|
|
102
|
+
// This is after the colon (the value) - check it normally
|
|
103
|
+
check(arg, decl);
|
|
104
|
+
}
|
|
105
|
+
});
|
|
106
|
+
|
|
107
|
+
return;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
args.forEach((arg) => check(arg, decl));
|
|
111
|
+
|
|
112
|
+
return;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
if (!isDashedIdent(node)) return;
|
|
116
|
+
|
|
117
|
+
// `postcss-value-parser` incorrectly includes semicolons in word tokens.
|
|
118
|
+
const cleanValue = node.value.replace(/;+$/, '');
|
|
119
|
+
|
|
120
|
+
if (!knownCustomProperties.has(cleanValue)) return;
|
|
121
|
+
|
|
122
|
+
const index = declarationValueIndex(decl) + node.sourceIndex;
|
|
123
|
+
const endIndex = index + cleanValue.length;
|
|
124
|
+
|
|
125
|
+
report({
|
|
126
|
+
message: messages.rejected,
|
|
127
|
+
messageArgs: [cleanValue],
|
|
128
|
+
node: decl,
|
|
129
|
+
index,
|
|
130
|
+
endIndex,
|
|
131
|
+
result,
|
|
132
|
+
ruleName,
|
|
133
|
+
});
|
|
134
|
+
}
|
|
135
|
+
};
|
|
136
|
+
};
|
|
137
|
+
|
|
138
|
+
/**
|
|
139
|
+
* @param {Node} node
|
|
140
|
+
*/
|
|
141
|
+
function isDashedIdent({ type, value }) {
|
|
142
|
+
return type === 'word' && value.startsWith('--');
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
rule.ruleName = ruleName;
|
|
146
|
+
rule.messages = messages;
|
|
147
|
+
rule.meta = meta;
|
|
148
|
+
export default rule;
|
package/packages/config-stylelint/node_modules/stylelint/lib/rules/custom-property-pattern/index.mjs
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import valueParser from 'postcss-value-parser';
|
|
2
|
+
|
|
3
|
+
import { atRuleParamIndex, declarationValueIndex } from '../../utils/nodeFieldIndices.mjs';
|
|
4
|
+
import { atRuleRegexes, mayIncludeRegexes } from '../../utils/regexes.mjs';
|
|
5
|
+
import { isRegExp, isString } from '../../utils/validateTypes.mjs';
|
|
6
|
+
import isCustomProperty from '../../utils/isCustomProperty.mjs';
|
|
7
|
+
import isStandardSyntaxProperty from '../../utils/isStandardSyntaxProperty.mjs';
|
|
8
|
+
import isVarFunction from '../../utils/isVarFunction.mjs';
|
|
9
|
+
import report from '../../utils/report.mjs';
|
|
10
|
+
import ruleMessages from '../../utils/ruleMessages.mjs';
|
|
11
|
+
import validateOptions from '../../utils/validateOptions.mjs';
|
|
12
|
+
|
|
13
|
+
const ruleName = 'custom-property-pattern';
|
|
14
|
+
|
|
15
|
+
const messages = ruleMessages(ruleName, {
|
|
16
|
+
expected: (property, pattern) => `Expected "${property}" to match pattern "${pattern}"`,
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
const meta = {
|
|
20
|
+
url: 'https://stylelint.io/user-guide/rules/custom-property-pattern',
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
/** @type {import('stylelint').CoreRules[ruleName]} */
|
|
24
|
+
const rule = (primary) => {
|
|
25
|
+
return (root, result) => {
|
|
26
|
+
const validOptions = validateOptions(result, ruleName, {
|
|
27
|
+
actual: primary,
|
|
28
|
+
possible: [isRegExp, isString],
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
if (!validOptions) return;
|
|
32
|
+
|
|
33
|
+
const regexpPattern = isString(primary) ? new RegExp(primary) : primary;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @param {string} property
|
|
37
|
+
* @returns {boolean}
|
|
38
|
+
*/
|
|
39
|
+
function check(property) {
|
|
40
|
+
return (
|
|
41
|
+
!isCustomProperty(property) ||
|
|
42
|
+
!isStandardSyntaxProperty(property) ||
|
|
43
|
+
regexpPattern.test(property.slice(2))
|
|
44
|
+
);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
root.walkDecls((decl) => {
|
|
48
|
+
const { prop, value } = decl;
|
|
49
|
+
|
|
50
|
+
if (mayIncludeRegexes.varFunction.test(value)) {
|
|
51
|
+
const parsedValue = valueParser(value);
|
|
52
|
+
|
|
53
|
+
parsedValue.walk((node) => {
|
|
54
|
+
if (!isVarFunction(node)) return;
|
|
55
|
+
|
|
56
|
+
const { nodes } = node;
|
|
57
|
+
const firstNode = nodes[0];
|
|
58
|
+
|
|
59
|
+
if (!firstNode || check(firstNode.value)) return;
|
|
60
|
+
|
|
61
|
+
complain(declarationValueIndex(decl) + firstNode.sourceIndex, firstNode.value, decl);
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
if (check(prop)) return;
|
|
66
|
+
|
|
67
|
+
complain(0, prop, decl);
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
root.walkAtRules(atRuleRegexes.propertyName, (atRule) => {
|
|
71
|
+
const { params: propName } = atRule;
|
|
72
|
+
|
|
73
|
+
if (check(propName)) return;
|
|
74
|
+
|
|
75
|
+
complain(atRuleParamIndex(atRule), propName, atRule);
|
|
76
|
+
});
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* @param {number} index
|
|
80
|
+
* @param {string} propName
|
|
81
|
+
* @param {import('postcss').Declaration|import('postcss').AtRule} node
|
|
82
|
+
*/
|
|
83
|
+
function complain(index, propName, node) {
|
|
84
|
+
report({
|
|
85
|
+
result,
|
|
86
|
+
ruleName,
|
|
87
|
+
message: messages.expected,
|
|
88
|
+
messageArgs: [propName, primary],
|
|
89
|
+
node,
|
|
90
|
+
index,
|
|
91
|
+
endIndex: index + propName.length,
|
|
92
|
+
});
|
|
93
|
+
}
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
|
|
97
|
+
rule.ruleName = ruleName;
|
|
98
|
+
rule.messages = messages;
|
|
99
|
+
rule.meta = meta;
|
|
100
|
+
export default rule;
|