File tree Expand file tree Collapse file tree 3 files changed +12
-14
lines changed Expand file tree Collapse file tree 3 files changed +12
-14
lines changed Original file line number Diff line number Diff line change 11{
2- "extends": ["stylelint-config-standard", "./index.js"]
2+ "extends": ["stylelint-config-standard", "./index.js"],
3+ "overrides": [
4+ {
5+ "files": "**/*.scss",
6+ "extends": ["stylelint-config-standard-scss", "./index.js"]
7+ }
8+ ]
39}
Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66
77## [ Unreleased]
88
9+ ### Fixed
10+ * Remove ` function-no-unknown ` overrides since that rule is not part
11+ of ` stylelint-config-standard ` nor ` stylelint-config-standard-scss `
12+ anymore.
13+
914## [ 4.4.1] - 2025-06-20
1015### Fixed
1116 * Update ` selector-type-no-unknown ` to match default configuration of
Original file line number Diff line number Diff line change @@ -32,12 +32,6 @@ export default {
3232 ignoreAtRules : [ 'value' ] ,
3333 } ,
3434 ] ,
35- 'function-no-unknown' : [
36- true ,
37- {
38- ignoreFunctions : [ 'global' ] ,
39- } ,
40- ] ,
4135 } ,
4236 overrides : [
4337 {
@@ -51,13 +45,6 @@ export default {
5145 ignoreAtRules : [ 'value' ] ,
5246 } ,
5347 ] ,
54- 'function-no-unknown' : null ,
55- 'scss/function-no-unknown' : [
56- true ,
57- {
58- ignoreFunctions : [ 'global' ] ,
59- } ,
60- ] ,
6148 } ,
6249 } ,
6350 ] ,
You can’t perform that action at this time.
0 commit comments