stylelint
Advanced tools
Comparing version 16.6.1 to 16.7.0
{ | ||
"name": "stylelint", | ||
"version": "16.6.1", | ||
"version": "16.7.0", | ||
"description": "A mighty CSS linter that helps you avoid errors and enforce conventions.", | ||
@@ -116,2 +116,3 @@ "keywords": [ | ||
}, | ||
"reportUnusedDisableDirectives": true, | ||
"root": true | ||
@@ -161,5 +162,5 @@ }, | ||
"dependencies": { | ||
"@csstools/css-parser-algorithms": "^2.6.3", | ||
"@csstools/css-tokenizer": "^2.3.1", | ||
"@csstools/media-query-list-parser": "^2.1.11", | ||
"@csstools/css-parser-algorithms": "^2.7.1", | ||
"@csstools/css-tokenizer": "^2.4.1", | ||
"@csstools/media-query-list-parser": "^2.1.13", | ||
"@csstools/selector-specificity": "^3.1.1", | ||
@@ -172,3 +173,3 @@ "@dual-bundle/import-meta-resolve": "^4.1.0", | ||
"css-tree": "^2.3.1", | ||
"debug": "^4.3.4", | ||
"debug": "^4.3.5", | ||
"fast-glob": "^3.3.2", | ||
@@ -184,3 +185,3 @@ "fastest-levenshtein": "^1.0.16", | ||
"is-plain-object": "^5.0.0", | ||
"known-css-properties": "^0.31.0", | ||
"known-css-properties": "^0.34.0", | ||
"mathml-tag-names": "^2.1.3", | ||
@@ -191,3 +192,3 @@ "meow": "^13.2.0", | ||
"picocolors": "^1.0.1", | ||
"postcss": "^8.4.38", | ||
"postcss": "^8.4.39", | ||
"postcss-resolve-nested-selector": "^0.1.1", | ||
@@ -206,9 +207,9 @@ "postcss-safe-parser": "^7.0.0", | ||
"devDependencies": { | ||
"@changesets/cli": "^2.27.3", | ||
"@changesets/cli": "^2.27.7", | ||
"@changesets/get-github-info": "^0.6.0", | ||
"@jest/globals": "^29.7.0", | ||
"@stylelint/prettier-config": "^3.0.0", | ||
"@stylelint/remark-preset": "^5.1.0", | ||
"@stylelint/remark-preset": "^5.1.1", | ||
"@types/balanced-match": "^1.0.4", | ||
"@types/css-tree": "^2.3.7", | ||
"@types/css-tree": "^2.3.8", | ||
"@types/debug": "^4.1.12", | ||
@@ -219,3 +220,3 @@ "@types/file-entry-cache": "^5.0.4", | ||
"@types/imurmurhash": "^0.1.4", | ||
"@types/micromatch": "^4.0.7", | ||
"@types/micromatch": "^4.0.9", | ||
"@types/normalize-path": "^3.0.2", | ||
@@ -233,9 +234,9 @@ "@types/postcss-less": "^4.0.6", | ||
"eslint-plugin-import": "^2.29.1", | ||
"eslint-plugin-jest": "^28.5.0", | ||
"eslint-plugin-jest": "^28.6.0", | ||
"husky": "^9.0.11", | ||
"jest": "^29.7.0", | ||
"jest-preset-stylelint": "^7.0.0", | ||
"jest-preset-stylelint": "^7.0.1", | ||
"jest-watch-typeahead": "^2.2.2", | ||
"lint-staged": "^15.2.5", | ||
"np": "^10.0.5", | ||
"lint-staged": "^15.2.7", | ||
"np": "^10.0.6", | ||
"npm-run-all": "^4.1.5", | ||
@@ -251,3 +252,3 @@ "patch-package": "^8.0.0", | ||
"sugarss": "^4.0.1", | ||
"typescript": "^5.4.5" | ||
"typescript": "^5.5.3" | ||
}, | ||
@@ -254,0 +255,0 @@ "engines": { |
@@ -113,3 +113,3 @@ import type * as PostCSS from 'postcss'; | ||
defaultSeverity?: Severity; | ||
ignoreDisables?: DisableSettings; | ||
ignoreDisables?: boolean; | ||
reportNeedlessDisables?: DisableSettings; | ||
@@ -160,3 +160,5 @@ reportInvalidScopeDisables?: DisableSettings; | ||
customMessages: { [ruleName: string]: RuleMessage }; | ||
customUrls: { [ruleName: string]: string }; | ||
ruleMetadata: { [ruleName: string]: Partial<RuleMeta> }; | ||
fixersData: { [ruleName: string]: Array<FixerData> }; | ||
quiet?: boolean; | ||
@@ -168,3 +170,2 @@ disabledRanges: DisabledRangeObject; | ||
stylelintWarning?: boolean; | ||
disableWritingFix?: boolean; | ||
config?: Config; | ||
@@ -177,2 +178,3 @@ }; | ||
severity?: Severity; | ||
url?: string; | ||
rule?: string; | ||
@@ -259,2 +261,13 @@ }; | ||
/** @internal */ | ||
export type Range = { | ||
start: Position; | ||
end: Position; | ||
}; | ||
type FixerData = { | ||
range?: Range; | ||
fixed: boolean; | ||
}; | ||
/** | ||
@@ -505,2 +518,3 @@ * A rule. | ||
text: string; | ||
url?: string; | ||
stylelintType?: string; | ||
@@ -583,2 +597,7 @@ }; | ||
type Position = { | ||
line: number; | ||
column: number; | ||
}; | ||
/** | ||
@@ -608,6 +627,3 @@ * A lint problem. | ||
*/ | ||
start?: { | ||
line: number; | ||
column: number; | ||
}; | ||
start?: Position; | ||
/** | ||
@@ -618,6 +634,3 @@ * The exclusive end position of the problem, relative to the | ||
*/ | ||
end?: { | ||
line: number; | ||
column: number; | ||
}; | ||
end?: Position; | ||
word?: string; | ||
@@ -629,2 +642,7 @@ line?: number; | ||
severity?: RuleSeverity; | ||
/** | ||
* @internal | ||
* WARNING: Don't use this feature now. It may change in the future. | ||
*/ | ||
fix?: () => void | never | Range; | ||
}; | ||
@@ -660,2 +678,3 @@ | ||
| 'font-synthesis' | ||
| 'font-variant' | ||
| 'gap' | ||
@@ -662,0 +681,0 @@ | 'grid' |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1449949
613
44531
8
+ Addedknown-css-properties@0.34.0(transitive)
- Removedknown-css-properties@0.31.0(transitive)
Updateddebug@^4.3.5
Updatedknown-css-properties@^0.34.0
Updatedpostcss@^8.4.39