Skip to content

Commit a5e1418

Browse files
committed
Disable color-function-notation
Due to Sass incompatibilities See: sass/sass#2831
1 parent e82257e commit a5e1418

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

app/javascript/packages/stylelint-config/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
- [`rule-empty-line-before`](https://stylelint.io/user-guide/rules/rule-empty-line-before/)
1212
- [`scss/dollar-variable-empty-line-before`](https://github.com/stylelint-scss/stylelint-scss/blob/master/src/rules/dollar-variable-empty-line-before/README.md)
1313
- [`scss/double-slash-comment-empty-line-before`](https://github.com/stylelint-scss/stylelint-scss/blob/master/src/rules/double-slash-comment-empty-line-before/README.md)
14+
- [`color-function-notation`](https://stylelint.io/user-guide/rules/color-function-notation/) (due to [Sass incompatibilities](https://github.com/sass/sass/issues/2831))
1415

1516
## 4.1.0
1617

app/javascript/packages/stylelint-config/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ module.exports = {
22
extends: ['stylelint-config-standard-scss', 'stylelint-prettier/recommended'],
33
rules: {
44
'at-rule-empty-line-before': null,
5+
'color-function-notation': null,
56
'declaration-empty-line-before': null,
67
'no-descending-specificity': null,
78
'rule-empty-line-before': null,

0 commit comments

Comments
 (0)