@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,383 @@
|
|
|
1
|
+
import { isAbsolute, join, normalize, relative } from 'node:path';
|
|
2
|
+
import process from 'node:process';
|
|
3
|
+
|
|
4
|
+
import createDebug from 'debug';
|
|
5
|
+
const debug = createDebug('stylelint:standalone');
|
|
6
|
+
|
|
7
|
+
import fastGlob from 'fast-glob';
|
|
8
|
+
import { globby } from 'globby';
|
|
9
|
+
import micromatch from 'micromatch';
|
|
10
|
+
import normalizePath from 'normalize-path';
|
|
11
|
+
import writeFileAtomic from 'write-file-atomic';
|
|
12
|
+
|
|
13
|
+
import {
|
|
14
|
+
AllFilesIgnoredError,
|
|
15
|
+
NoFilesFoundError,
|
|
16
|
+
SuppressionFileNotFoundError,
|
|
17
|
+
} from './utils/errors.mjs';
|
|
18
|
+
import { assertString, isString } from './utils/validateTypes.mjs';
|
|
19
|
+
import { DEFAULT_SUPPRESSION_FILENAME } from './constants.mjs';
|
|
20
|
+
import { SuppressionsService } from './utils/suppressionsService.mjs';
|
|
21
|
+
import createPartialStylelintResult from './createPartialStylelintResult.mjs';
|
|
22
|
+
import createStylelint from './createStylelint.mjs';
|
|
23
|
+
import { emitExperimentalWarning } from './utils/emitWarning.mjs';
|
|
24
|
+
import filterFilePaths from './utils/filterFilePaths.mjs';
|
|
25
|
+
import getConfigForFile from './getConfigForFile.mjs';
|
|
26
|
+
import getFileIgnorer from './utils/getFileIgnorer.mjs';
|
|
27
|
+
import getFormatter from './utils/getFormatter.mjs';
|
|
28
|
+
import lintSource from './lintSource.mjs';
|
|
29
|
+
import normalizeFixMode from './utils/normalizeFixMode.mjs';
|
|
30
|
+
import pathExists from './utils/pathExists.mjs';
|
|
31
|
+
import prepareReturnValue from './prepareReturnValue.mjs';
|
|
32
|
+
import resolveFilePath from './utils/resolveFilePath.mjs';
|
|
33
|
+
import resolveOptionValue from './utils/resolveOptionValue.mjs';
|
|
34
|
+
import toPath from './utils/toPath.mjs';
|
|
35
|
+
|
|
36
|
+
const ALWAYS_IGNORED_GLOBS = ['**/node_modules/**'];
|
|
37
|
+
|
|
38
|
+
/** @import {InternalApi, LintResult} from 'stylelint' */
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* @type {import('stylelint').PublicApi['lint']}
|
|
42
|
+
*/
|
|
43
|
+
export default async function standalone({
|
|
44
|
+
allowEmptyInput,
|
|
45
|
+
cache,
|
|
46
|
+
cacheLocation,
|
|
47
|
+
cacheStrategy,
|
|
48
|
+
code,
|
|
49
|
+
codeFilename,
|
|
50
|
+
config,
|
|
51
|
+
configBasedir,
|
|
52
|
+
configFile,
|
|
53
|
+
customSyntax,
|
|
54
|
+
cwd = process.cwd(),
|
|
55
|
+
disableDefaultIgnores,
|
|
56
|
+
files,
|
|
57
|
+
fix,
|
|
58
|
+
computeEditInfo,
|
|
59
|
+
formatter,
|
|
60
|
+
_defaultFormatter,
|
|
61
|
+
globbyOptions,
|
|
62
|
+
ignoreDisables,
|
|
63
|
+
ignorePath,
|
|
64
|
+
ignorePattern,
|
|
65
|
+
maxWarnings,
|
|
66
|
+
quiet,
|
|
67
|
+
quietDeprecationWarnings = false,
|
|
68
|
+
reportDescriptionlessDisables,
|
|
69
|
+
reportInvalidScopeDisables,
|
|
70
|
+
reportNeedlessDisables,
|
|
71
|
+
reportUnscopedDisables,
|
|
72
|
+
suppressAll,
|
|
73
|
+
suppressRule,
|
|
74
|
+
suppressLocation,
|
|
75
|
+
validate = true,
|
|
76
|
+
}) {
|
|
77
|
+
const startTime = Date.now();
|
|
78
|
+
|
|
79
|
+
const useInputCode = !files && isString(code);
|
|
80
|
+
const hasOneValidInput = (files && !isString(code)) || useInputCode;
|
|
81
|
+
|
|
82
|
+
if (!hasOneValidInput) {
|
|
83
|
+
return Promise.reject(
|
|
84
|
+
new Error('You must pass stylelint a `files` glob or a `code` string, though not both'),
|
|
85
|
+
);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
// The ignorer will be used to filter file paths after the glob is checked,
|
|
89
|
+
// before any files are actually read
|
|
90
|
+
/** @type {import('ignore').Ignore} */
|
|
91
|
+
let ignorer;
|
|
92
|
+
|
|
93
|
+
try {
|
|
94
|
+
ignorer = getFileIgnorer({ cwd, ignorePath, ignorePattern });
|
|
95
|
+
} catch (error) {
|
|
96
|
+
return Promise.reject(error);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
const stylelint = createStylelint({
|
|
100
|
+
allowEmptyInput,
|
|
101
|
+
cache,
|
|
102
|
+
cacheLocation,
|
|
103
|
+
cacheStrategy,
|
|
104
|
+
config,
|
|
105
|
+
configFile,
|
|
106
|
+
configBasedir,
|
|
107
|
+
cwd,
|
|
108
|
+
formatter,
|
|
109
|
+
_defaultFormatter,
|
|
110
|
+
ignoreDisables,
|
|
111
|
+
ignorePath,
|
|
112
|
+
reportNeedlessDisables,
|
|
113
|
+
reportInvalidScopeDisables,
|
|
114
|
+
reportDescriptionlessDisables,
|
|
115
|
+
reportUnscopedDisables,
|
|
116
|
+
customSyntax,
|
|
117
|
+
fix,
|
|
118
|
+
computeEditInfo,
|
|
119
|
+
quiet,
|
|
120
|
+
quietDeprecationWarnings,
|
|
121
|
+
validate,
|
|
122
|
+
});
|
|
123
|
+
|
|
124
|
+
const formatterFunction = await getFormatter(stylelint);
|
|
125
|
+
|
|
126
|
+
if (!files) {
|
|
127
|
+
assertString(code);
|
|
128
|
+
|
|
129
|
+
const absoluteCodeFilename =
|
|
130
|
+
codeFilename !== undefined && !isAbsolute(codeFilename)
|
|
131
|
+
? join(cwd, codeFilename)
|
|
132
|
+
: codeFilename;
|
|
133
|
+
|
|
134
|
+
// if file is ignored, return nothing
|
|
135
|
+
if (
|
|
136
|
+
absoluteCodeFilename &&
|
|
137
|
+
(!filterFilePaths(ignorer, [relative(cwd, absoluteCodeFilename)]).length ||
|
|
138
|
+
(!disableDefaultIgnores && micromatch.isMatch(absoluteCodeFilename, ALWAYS_IGNORED_GLOBS)))
|
|
139
|
+
) {
|
|
140
|
+
return prepareReturnValue({
|
|
141
|
+
results: [],
|
|
142
|
+
maxWarnings,
|
|
143
|
+
quietDeprecationWarnings,
|
|
144
|
+
formatter: formatterFunction,
|
|
145
|
+
cwd,
|
|
146
|
+
});
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
let stylelintResult;
|
|
150
|
+
|
|
151
|
+
try {
|
|
152
|
+
const postcssResult = await lintSource(stylelint, {
|
|
153
|
+
code,
|
|
154
|
+
codeFilename: absoluteCodeFilename,
|
|
155
|
+
});
|
|
156
|
+
|
|
157
|
+
stylelintResult = createPartialStylelintResult(postcssResult);
|
|
158
|
+
} catch (error) {
|
|
159
|
+
stylelintResult = handleError(error);
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
await postProcessStylelintResult(stylelint, stylelintResult, absoluteCodeFilename);
|
|
163
|
+
|
|
164
|
+
const postcssResult = stylelintResult._postcssResult;
|
|
165
|
+
const returnValue = prepareReturnValue({
|
|
166
|
+
results: [stylelintResult],
|
|
167
|
+
maxWarnings,
|
|
168
|
+
quietDeprecationWarnings,
|
|
169
|
+
formatter: formatterFunction,
|
|
170
|
+
cwd,
|
|
171
|
+
});
|
|
172
|
+
|
|
173
|
+
const autofix = normalizeFixMode(stylelint._options.fix) ?? config?.fix ?? false;
|
|
174
|
+
|
|
175
|
+
if (autofix && postcssResult && !postcssResult.stylelint.ignored) {
|
|
176
|
+
returnValue.code = postcssResult.opts
|
|
177
|
+
? // If we're fixing, the output should be the fixed code
|
|
178
|
+
postcssResult.root.toString(postcssResult.opts.syntax)
|
|
179
|
+
: // If the writing of the fix is disabled, the input code is returned as-is
|
|
180
|
+
code;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
return returnValue;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
let fileList = await Promise.all(
|
|
187
|
+
(typeof files === 'string' ? [files] : files).map(async (entry) => {
|
|
188
|
+
const globCWD = toPath(globbyOptions?.cwd) || cwd;
|
|
189
|
+
const absolutePath = !isAbsolute(entry) ? join(globCWD, entry) : normalize(entry);
|
|
190
|
+
|
|
191
|
+
if (await pathExists(absolutePath)) {
|
|
192
|
+
// This path points to a file. Return an escaped path to avoid globbing
|
|
193
|
+
return fastGlob.escapePath(normalizePath(entry));
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
return entry;
|
|
197
|
+
}),
|
|
198
|
+
);
|
|
199
|
+
|
|
200
|
+
if (!disableDefaultIgnores) {
|
|
201
|
+
fileList = fileList.concat(ALWAYS_IGNORED_GLOBS.map((glob) => `!${glob}`));
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
const useCache = await resolveOptionValue({ stylelint, name: 'cache', default: false });
|
|
205
|
+
|
|
206
|
+
if (!useCache) {
|
|
207
|
+
stylelint._fileCache.destroy();
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
const effectiveGlobbyOptions = {
|
|
211
|
+
cwd,
|
|
212
|
+
...(globbyOptions || {}),
|
|
213
|
+
absolute: true,
|
|
214
|
+
};
|
|
215
|
+
|
|
216
|
+
const globCWD = toPath(effectiveGlobbyOptions.cwd);
|
|
217
|
+
|
|
218
|
+
let filePaths = await globby(fileList, effectiveGlobbyOptions);
|
|
219
|
+
|
|
220
|
+
// Record the length of filePaths before ignore operation
|
|
221
|
+
// Prevent prompting "No files matching the pattern 'xx' were found." when .stylelintignore ignore all input files
|
|
222
|
+
const filePathsLengthBeforeIgnore = filePaths.length;
|
|
223
|
+
|
|
224
|
+
// The ignorer filter needs to check paths relative to cwd
|
|
225
|
+
filePaths = filterFilePaths(
|
|
226
|
+
ignorer,
|
|
227
|
+
filePaths.map((p) => relative(globCWD, p)),
|
|
228
|
+
);
|
|
229
|
+
|
|
230
|
+
let stylelintResults;
|
|
231
|
+
|
|
232
|
+
if (filePaths.length) {
|
|
233
|
+
const absoluteFilePaths = filePaths.map((filePath) =>
|
|
234
|
+
isAbsolute(filePath) ? normalize(filePath) : join(globCWD, filePath),
|
|
235
|
+
);
|
|
236
|
+
|
|
237
|
+
const getStylelintResults = absoluteFilePaths.map(async (absoluteFilepath) => {
|
|
238
|
+
debug(`Processing ${absoluteFilepath}`);
|
|
239
|
+
|
|
240
|
+
try {
|
|
241
|
+
const postcssResult = await lintSource(stylelint, {
|
|
242
|
+
filePath: absoluteFilepath,
|
|
243
|
+
cache: useCache,
|
|
244
|
+
});
|
|
245
|
+
|
|
246
|
+
if (
|
|
247
|
+
(postcssResult.stylelint.stylelintError || postcssResult.stylelint.stylelintWarning) &&
|
|
248
|
+
useCache
|
|
249
|
+
) {
|
|
250
|
+
debug(`${absoluteFilepath} contains linting errors and will not be cached.`);
|
|
251
|
+
stylelint._fileCache.removeEntry(absoluteFilepath);
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
/**
|
|
255
|
+
* If we're fixing, save the file with changed code
|
|
256
|
+
*/
|
|
257
|
+
if (postcssResult.root && postcssResult.opts && !postcssResult.stylelint.ignored && fix) {
|
|
258
|
+
const fixedCss = postcssResult.root.toString(postcssResult.opts.syntax);
|
|
259
|
+
|
|
260
|
+
if (
|
|
261
|
+
postcssResult.root &&
|
|
262
|
+
postcssResult.root.source &&
|
|
263
|
+
postcssResult.root.source.input.css !== fixedCss
|
|
264
|
+
) {
|
|
265
|
+
await writeFileAtomic(absoluteFilepath, fixedCss);
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
const stylelintResult = createPartialStylelintResult(postcssResult);
|
|
270
|
+
|
|
271
|
+
await postProcessStylelintResult(stylelint, stylelintResult, absoluteFilepath);
|
|
272
|
+
|
|
273
|
+
return stylelintResult;
|
|
274
|
+
} catch (error) {
|
|
275
|
+
// On any error, we should not cache the lint result
|
|
276
|
+
stylelint._fileCache.removeEntry(absoluteFilepath);
|
|
277
|
+
|
|
278
|
+
const stylelintResult = handleError(error);
|
|
279
|
+
|
|
280
|
+
await postProcessStylelintResult(stylelint, stylelintResult, absoluteFilepath);
|
|
281
|
+
|
|
282
|
+
return stylelintResult;
|
|
283
|
+
}
|
|
284
|
+
});
|
|
285
|
+
|
|
286
|
+
stylelintResults = await Promise.all(getStylelintResults);
|
|
287
|
+
} else if (await resolveOptionValue({ stylelint, name: 'allowEmptyInput', default: false })) {
|
|
288
|
+
stylelintResults = await Promise.all([]);
|
|
289
|
+
} else if (filePathsLengthBeforeIgnore) {
|
|
290
|
+
// All input files ignored
|
|
291
|
+
stylelintResults = await Promise.reject(new AllFilesIgnoredError());
|
|
292
|
+
} else {
|
|
293
|
+
stylelintResults = await Promise.reject(new NoFilesFoundError(fileList));
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
if (!useInputCode) {
|
|
297
|
+
const resolvedSuppressLocation = resolveFilePath(
|
|
298
|
+
suppressLocation || DEFAULT_SUPPRESSION_FILENAME,
|
|
299
|
+
cwd,
|
|
300
|
+
DEFAULT_SUPPRESSION_FILENAME,
|
|
301
|
+
);
|
|
302
|
+
|
|
303
|
+
const existsSuppressionsFile = await pathExists(resolvedSuppressLocation);
|
|
304
|
+
|
|
305
|
+
if (suppressLocation && !existsSuppressionsFile && !suppressAll && !suppressRule) {
|
|
306
|
+
throw new SuppressionFileNotFoundError();
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
if (suppressAll || suppressRule || existsSuppressionsFile) {
|
|
310
|
+
emitExperimentalWarning(
|
|
311
|
+
'The suppressions feature is experimental.',
|
|
312
|
+
'SUPPRESSIONS',
|
|
313
|
+
'See https://stylelint.io/user-guide/suppressions for more information.',
|
|
314
|
+
);
|
|
315
|
+
|
|
316
|
+
const suppressions = new SuppressionsService({
|
|
317
|
+
filePath: resolvedSuppressLocation,
|
|
318
|
+
cwd: process.cwd(),
|
|
319
|
+
});
|
|
320
|
+
|
|
321
|
+
if (suppressAll || suppressRule) {
|
|
322
|
+
await suppressions.suppress(stylelintResults, suppressRule);
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
const suppressionResults = suppressions.applySuppressions(
|
|
326
|
+
stylelintResults,
|
|
327
|
+
await suppressions.load(),
|
|
328
|
+
);
|
|
329
|
+
|
|
330
|
+
stylelintResults = suppressionResults.results;
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
if (useCache) {
|
|
335
|
+
stylelint._fileCache.reconcile();
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
const result = prepareReturnValue({
|
|
339
|
+
results: stylelintResults,
|
|
340
|
+
maxWarnings,
|
|
341
|
+
quietDeprecationWarnings,
|
|
342
|
+
formatter: formatterFunction,
|
|
343
|
+
cwd,
|
|
344
|
+
});
|
|
345
|
+
|
|
346
|
+
debug(`Linting complete in ${Date.now() - startTime}ms`);
|
|
347
|
+
|
|
348
|
+
return result;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
/**
|
|
352
|
+
* @import {CssSyntaxError} from 'stylelint'
|
|
353
|
+
*
|
|
354
|
+
* @param {unknown} error
|
|
355
|
+
* @returns {LintResult}
|
|
356
|
+
*/
|
|
357
|
+
function handleError(error) {
|
|
358
|
+
if (error instanceof Error && error.name === 'CssSyntaxError') {
|
|
359
|
+
return createPartialStylelintResult(undefined, /** @type {CssSyntaxError} */ (error));
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
throw error;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
/**
|
|
366
|
+
* @param {InternalApi} stylelint
|
|
367
|
+
* @param {LintResult} stylelintResult
|
|
368
|
+
* @param {string} [filePath]
|
|
369
|
+
* @returns {Promise<void>}
|
|
370
|
+
*/
|
|
371
|
+
async function postProcessStylelintResult(stylelint, stylelintResult, filePath) {
|
|
372
|
+
const configForFile = await getConfigForFile({ stylelint, searchPath: filePath, filePath });
|
|
373
|
+
|
|
374
|
+
const config = configForFile === null ? {} : configForFile.config;
|
|
375
|
+
|
|
376
|
+
if (!config._processorFunctions) {
|
|
377
|
+
return;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
for (const postprocess of config._processorFunctions.values()) {
|
|
381
|
+
postprocess?.(stylelintResult, stylelintResult._postcssResult?.root);
|
|
382
|
+
}
|
|
383
|
+
}
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
import process from 'node:process';
|
|
2
|
+
import { table } from 'table';
|
|
3
|
+
|
|
4
|
+
// Inspired by ESLint's timing.js
|
|
5
|
+
// https://github.com/eslint/eslint/blob/09bc2a88c00aa9a93c7de505795fc4e85b2e6357/lib/linter/timing.js
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Start time measurement.
|
|
9
|
+
* @returns {bigint} Variable for tracking time in nanoseconds.
|
|
10
|
+
*/
|
|
11
|
+
function startTime() {
|
|
12
|
+
return process.hrtime.bigint();
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* End time measurement.
|
|
17
|
+
* @param {bigint} start Variable for tracking time in nanoseconds.
|
|
18
|
+
* @returns {number} The measured time in milliseconds.
|
|
19
|
+
*/
|
|
20
|
+
function endTime(start) {
|
|
21
|
+
const diff = process.hrtime.bigint() - start;
|
|
22
|
+
|
|
23
|
+
return Number(diff) / 1e6;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
const HEADERS = ['#', 'Rule', 'Time (ms)', 'Relative'];
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Decide how many rules to show in the output list.
|
|
30
|
+
* @returns {number} The number of rules to show.
|
|
31
|
+
*/
|
|
32
|
+
function getListSize() {
|
|
33
|
+
const TIMING = process.env.TIMING;
|
|
34
|
+
|
|
35
|
+
if (typeof TIMING === 'undefined') {
|
|
36
|
+
return 0;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
if (TIMING.toLowerCase() === 'all') {
|
|
40
|
+
return Number.POSITIVE_INFINITY;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
const parsed = Number.parseInt(TIMING, 10);
|
|
44
|
+
|
|
45
|
+
if (!Number.isNaN(parsed) && parsed >= 1) {
|
|
46
|
+
return parsed;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
return 0;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
const listSize = getListSize();
|
|
53
|
+
const enabled = listSize !== 0;
|
|
54
|
+
|
|
55
|
+
/** @type {import('table').TableUserConfig} */
|
|
56
|
+
const tableConfig = {
|
|
57
|
+
columns: [
|
|
58
|
+
{ alignment: 'right' },
|
|
59
|
+
{ alignment: 'left' },
|
|
60
|
+
{ alignment: 'right' },
|
|
61
|
+
{ alignment: 'right' },
|
|
62
|
+
],
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Display the timing data.
|
|
67
|
+
* @param {{ [key: string]: number }} data Data object to be displayed.
|
|
68
|
+
* @returns {void}
|
|
69
|
+
* @private
|
|
70
|
+
*/
|
|
71
|
+
function display(data) {
|
|
72
|
+
let total = 0;
|
|
73
|
+
|
|
74
|
+
/** @type {Array<[string, number]>} */
|
|
75
|
+
const rows = Object.keys(data).map((key) => {
|
|
76
|
+
const t = data[key] ?? 0;
|
|
77
|
+
|
|
78
|
+
total += t;
|
|
79
|
+
|
|
80
|
+
return [key, t];
|
|
81
|
+
});
|
|
82
|
+
|
|
83
|
+
rows.sort((a, b) => b[1] - a[1]);
|
|
84
|
+
const limitedRows = rows.slice(0, listSize);
|
|
85
|
+
|
|
86
|
+
// Format rows with percentages
|
|
87
|
+
const formattedRows = limitedRows.map((row, index) => {
|
|
88
|
+
const percentage = total > 0 ? `${((row[1] * 100) / total).toFixed(1)}%` : '0.0%';
|
|
89
|
+
const timeStr = row[1].toFixed(3);
|
|
90
|
+
|
|
91
|
+
return [index + 1, row[0], timeStr, percentage];
|
|
92
|
+
});
|
|
93
|
+
|
|
94
|
+
formattedRows.unshift(HEADERS);
|
|
95
|
+
|
|
96
|
+
// eslint-disable-next-line no-console
|
|
97
|
+
console.log(table(formattedRows, tableConfig));
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
/** @type {{ [key: string]: number }} */
|
|
101
|
+
const data = Object.create(null);
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* Time the execution of a function.
|
|
105
|
+
* @param {string} key Key from the data object.
|
|
106
|
+
* @param {Function} fn Function to be called.
|
|
107
|
+
* @returns {Function} Function to be executed.
|
|
108
|
+
* @private
|
|
109
|
+
*/
|
|
110
|
+
function time(key, fn) {
|
|
111
|
+
return function timedFunction(/** @type {any} */ ...args) {
|
|
112
|
+
const t = startTime();
|
|
113
|
+
const result = fn(...args);
|
|
114
|
+
const timeDiff = endTime(t);
|
|
115
|
+
|
|
116
|
+
data[key] = (data[key] ?? 0) + timeDiff;
|
|
117
|
+
|
|
118
|
+
return result;
|
|
119
|
+
};
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
if (enabled) {
|
|
123
|
+
process.on('exit', () => {
|
|
124
|
+
display(data);
|
|
125
|
+
});
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
export default {
|
|
129
|
+
display,
|
|
130
|
+
enabled,
|
|
131
|
+
getListSize,
|
|
132
|
+
tableConfig,
|
|
133
|
+
time,
|
|
134
|
+
};
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { RULE_NAME_ALL } from './constants.mjs';
|
|
2
|
+
|
|
3
|
+
import optionsMatches from './utils/optionsMatches.mjs';
|
|
4
|
+
import reportCommentProblem from './utils/reportCommentProblem.mjs';
|
|
5
|
+
import validateDisableSettings from './validateDisableSettings.mjs';
|
|
6
|
+
|
|
7
|
+
/** @typedef {import('postcss').Node} Node */
|
|
8
|
+
|
|
9
|
+
/** @param {import('stylelint').PostcssResult} postcssResult */
|
|
10
|
+
export default function reportUnscopedDisables(postcssResult) {
|
|
11
|
+
const [enabled, options] = validateDisableSettings(postcssResult, 'reportUnscopedDisables');
|
|
12
|
+
|
|
13
|
+
if (!options) return;
|
|
14
|
+
|
|
15
|
+
const isDisabled = !enabled && !options.except.length;
|
|
16
|
+
|
|
17
|
+
if (isDisabled) return;
|
|
18
|
+
|
|
19
|
+
const stylelint = postcssResult.stylelint;
|
|
20
|
+
const unscopedComments = stylelint.disabledRanges[RULE_NAME_ALL];
|
|
21
|
+
|
|
22
|
+
if (!unscopedComments) return;
|
|
23
|
+
|
|
24
|
+
/** @param {Node} node */
|
|
25
|
+
const report = (node) => {
|
|
26
|
+
reportCommentProblem({
|
|
27
|
+
rule: '--report-unscoped-disables',
|
|
28
|
+
message: `Configuration comment must be scoped`,
|
|
29
|
+
severity: options.severity,
|
|
30
|
+
node,
|
|
31
|
+
postcssResult,
|
|
32
|
+
});
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
const hasExceptions = options.except.length;
|
|
36
|
+
|
|
37
|
+
if (hasExceptions && !enabled) {
|
|
38
|
+
const configRules = stylelint.config?.rules;
|
|
39
|
+
|
|
40
|
+
if (!configRules) return;
|
|
41
|
+
|
|
42
|
+
const warnings = stylelint.disabledWarnings;
|
|
43
|
+
|
|
44
|
+
if (!warnings) return;
|
|
45
|
+
|
|
46
|
+
/** @type {Set<Node>} */
|
|
47
|
+
const alreadyReported = new Set();
|
|
48
|
+
|
|
49
|
+
for (const { line, rule } of warnings) {
|
|
50
|
+
const isException = optionsMatches(options, 'except', rule);
|
|
51
|
+
|
|
52
|
+
if (!isException) continue;
|
|
53
|
+
|
|
54
|
+
for (const { start, end, node } of unscopedComments) {
|
|
55
|
+
if (alreadyReported.has(node)) continue;
|
|
56
|
+
|
|
57
|
+
if (start <= line && (end === undefined || end >= line)) {
|
|
58
|
+
report(node);
|
|
59
|
+
alreadyReported.add(node);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
} else if (enabled) {
|
|
64
|
+
for (const { node } of unscopedComments) report(node);
|
|
65
|
+
}
|
|
66
|
+
}
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import { readFileSync, rmSync } from 'node:fs';
|
|
2
|
+
import process from 'node:process';
|
|
3
|
+
import { resolve } from 'node:path';
|
|
4
|
+
|
|
5
|
+
import createDebug from 'debug';
|
|
6
|
+
import fileEntryCache from 'file-entry-cache';
|
|
7
|
+
|
|
8
|
+
import {
|
|
9
|
+
CACHE_STRATEGY_CONTENT,
|
|
10
|
+
CACHE_STRATEGY_METADATA,
|
|
11
|
+
DEFAULT_CACHE_LOCATION,
|
|
12
|
+
DEFAULT_CACHE_STRATEGY,
|
|
13
|
+
} from '../constants.mjs';
|
|
14
|
+
import hash from './hash.mjs';
|
|
15
|
+
import resolveFilePath from './resolveFilePath.mjs';
|
|
16
|
+
|
|
17
|
+
const debug = createDebug('stylelint:file-cache');
|
|
18
|
+
|
|
19
|
+
const pkg = JSON.parse(readFileSync(new URL('../../package.json', import.meta.url), 'utf8'));
|
|
20
|
+
|
|
21
|
+
export default class FileCache {
|
|
22
|
+
constructor(
|
|
23
|
+
cacheLocation = DEFAULT_CACHE_LOCATION,
|
|
24
|
+
cacheStrategy = DEFAULT_CACHE_STRATEGY,
|
|
25
|
+
cwd = process.cwd(),
|
|
26
|
+
) {
|
|
27
|
+
if (![CACHE_STRATEGY_METADATA, CACHE_STRATEGY_CONTENT].includes(cacheStrategy)) {
|
|
28
|
+
throw new Error(
|
|
29
|
+
`"${cacheStrategy}" cache strategy is unsupported. Specify either "${CACHE_STRATEGY_METADATA}" or "${CACHE_STRATEGY_CONTENT}"`,
|
|
30
|
+
);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
const cacheFile = resolve(resolveFilePath(cacheLocation, cwd, `.stylelintcache_${hash(cwd)}`));
|
|
34
|
+
const useCheckSum = cacheStrategy === CACHE_STRATEGY_CONTENT;
|
|
35
|
+
|
|
36
|
+
debug(`Cache file is created at ${cacheFile}`);
|
|
37
|
+
|
|
38
|
+
try {
|
|
39
|
+
this._fileCache = fileEntryCache.createFromFile(cacheFile, { useCheckSum, cwd: undefined });
|
|
40
|
+
} catch {
|
|
41
|
+
debug(`Cache file might be corrupt, attempting to remove and recreate the cache file`);
|
|
42
|
+
|
|
43
|
+
rmSync(cacheFile, { force: true });
|
|
44
|
+
this._fileCache = fileEntryCache.createFromFile(cacheFile, { useCheckSum, cwd: undefined });
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
this._hashOfConfig = '';
|
|
48
|
+
this._useCheckSum = useCheckSum;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* @param {import('stylelint').Config} config
|
|
53
|
+
*/
|
|
54
|
+
calcHashOfConfig(config) {
|
|
55
|
+
if (this._hashOfConfig) return;
|
|
56
|
+
|
|
57
|
+
const stylelintVersion = pkg.version;
|
|
58
|
+
const configString = JSON.stringify(config || {});
|
|
59
|
+
|
|
60
|
+
this._hashOfConfig = hash(`${stylelintVersion}_${configString}`);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* @param {string} absoluteFilepath
|
|
65
|
+
* @returns {boolean}
|
|
66
|
+
*/
|
|
67
|
+
hasFileChanged(absoluteFilepath) {
|
|
68
|
+
// Get file descriptor compares current metadata against cached
|
|
69
|
+
// one and stores the result to "changed" prop.w
|
|
70
|
+
|
|
71
|
+
/** @type {import('file-entry-cache').FileDescriptorMeta | undefined} */
|
|
72
|
+
const metaCache = this._fileCache.cache.getKey(this._fileCache.createFileKey(absoluteFilepath));
|
|
73
|
+
const descriptor = this._fileCache.getFileDescriptor(absoluteFilepath);
|
|
74
|
+
|
|
75
|
+
/** @type {{ hashOfConfig?: string; }} */
|
|
76
|
+
const metadata = (descriptor.meta.data ??= {});
|
|
77
|
+
|
|
78
|
+
const configChanged = metadata.hashOfConfig !== this._hashOfConfig;
|
|
79
|
+
|
|
80
|
+
let changed;
|
|
81
|
+
|
|
82
|
+
if (this._useCheckSum) {
|
|
83
|
+
changed = configChanged || !metaCache?.hash || metaCache.hash !== descriptor.meta.hash;
|
|
84
|
+
} else {
|
|
85
|
+
changed = configChanged || Boolean(descriptor.changed);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
if (!changed) {
|
|
89
|
+
debug(`Skip linting ${absoluteFilepath}. File hasn't changed.`);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
// Mutate file descriptor object and store config hash to each file.
|
|
93
|
+
// Running lint with different config should invalidate the cache.
|
|
94
|
+
if (metadata.hashOfConfig !== this._hashOfConfig) {
|
|
95
|
+
metadata.hashOfConfig = this._hashOfConfig;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
return changed;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
reconcile() {
|
|
102
|
+
this._fileCache.reconcile();
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
destroy() {
|
|
106
|
+
this._fileCache.destroy();
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/**
|
|
110
|
+
* @param {string} absoluteFilepath
|
|
111
|
+
*/
|
|
112
|
+
removeEntry(absoluteFilepath) {
|
|
113
|
+
this._fileCache.removeEntry(absoluteFilepath);
|
|
114
|
+
}
|
|
115
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Add one or two empty line(s) before a node. Mutates the node.
|
|
3
|
+
*
|
|
4
|
+
* @template {import('postcss').Node} T
|
|
5
|
+
* @param {T} node
|
|
6
|
+
* @param {string} newline
|
|
7
|
+
* @returns {T}
|
|
8
|
+
*/
|
|
9
|
+
export default function addEmptyLineBefore(node, newline) {
|
|
10
|
+
const { raws } = node;
|
|
11
|
+
|
|
12
|
+
if (typeof raws.before !== 'string') {
|
|
13
|
+
return node;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
raws.before = !/\r?\n/.test(raws.before)
|
|
17
|
+
? newline.repeat(2) + raws.before
|
|
18
|
+
: raws.before.replace(/(\r?\n)/, `${newline}$1`);
|
|
19
|
+
|
|
20
|
+
return node;
|
|
21
|
+
}
|