Skip to content

Commit f60fe1d

Browse files
committed
removed deprecated max-line-length rule declaration
https://stylelint.io/migration-guide/to-15/#deprecated-stylistic-rules
1 parent 1879830 commit f60fe1d

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

packages/components/.stylelintrc.js

-4
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@ module.exports = {
2424
// see: https://stylelint.io/user-guide/rules/list/declaration-empty-line-before/
2525
'declaration-empty-line-before': null,
2626

27-
// we've agreed to not enforce a limit on the lines lenght (we embed SVGs so very long strings + plus modern browsers can esily soft-wrap code)
28-
// see: https://stylelint.io/user-guide/rules/list/max-line-length/
29-
'max-line-length': null,
30-
3127
// we've decided to disable this rule because we want to be able to order our declarations based on different criteria, if/when needed
3228
// see: https://stylelint.io/user-guide/rules/list/no-descending-specificity/
3329
'no-descending-specificity': null,

showcase/.stylelintrc.js

-4
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@ module.exports = {
2424
// see: https://stylelint.io/user-guide/rules/list/declaration-empty-line-before/
2525
'declaration-empty-line-before': null,
2626

27-
// we've agreed to not enforce a limit on the lines lenght (we embed SVGs so very long strings + plus modern browsers can esily soft-wrap code)
28-
// see: https://stylelint.io/user-guide/rules/list/max-line-length/
29-
'max-line-length': null,
30-
3127
// we've decided to disable this rule because we want to be able to order our declarations based on different criteria, if/when needed
3228
// see: https://stylelint.io/user-guide/rules/list/no-descending-specificity/
3329
'no-descending-specificity': null,

0 commit comments

Comments
 (0)