Skip to content

Commit 33ab8c6

Browse files
committed
chore: ignore break-word issue
1 parent 2448c3f commit 33ab8c6

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

stylelint.config.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ module.exports = {
88
"color-function-notation": "legacy",
99

1010
// Suppress stylelint-config-recommended errors
11+
"declaration-property-value-keyword-no-deprecated": [
12+
true,
13+
{
14+
ignoreKeywords: [
15+
"break-word" // word-break: break-word; is depreciated but used upstream as well
16+
]
17+
}
18+
],
1119
"font-family-no-duplicate-names": [
1220
true,
1321
{

0 commit comments

Comments
 (0)