Skip to content

Commit 5c75d4d

Browse files
committed
Remove function-no-unknown overrides
1 parent 5c85f9f commit 5c75d4d

File tree

3 files changed

+12
-14
lines changed

3 files changed

+12
-14
lines changed

.stylelintrc

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
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
}

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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

index.js

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff 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
],

0 commit comments

Comments
 (0)