Skip to content

Commit e8022cc

Browse files
committed
chore: formatting
1 parent 559e83d commit e8022cc

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Enforces [SUIT CSS naming conventions](https://github.com/suitcss/suit/blob/mast
108108
}
109109
```
110110

111-
Due to the potential ambiguity of the validation pattern in SUIT CSS this option prefers to lean on being more relaxed rather than incorrectly
111+
Due to the potential ambiguity of the validation pattern in SUIT CSS this option prefers to lean on being more relaxed rather than incorrectly
112112
flagging properties as invalid.
113113

114114
### Custom pattern validation

src/index.test.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,14 @@ describe('rule implementation', () => {
133133
description: 'multiple var()',
134134
code: `.button { border: var(--wrong-borderWidth, 1px) var(--Button-borderStyle, solid); }`,
135135
warnings: [
136-
{message: messages.invalid('--wrong-borderWidth', '--Button', '--wrong')}
137-
]
136+
{
137+
message: messages.invalid(
138+
'--wrong-borderWidth',
139+
'--Button',
140+
'--wrong',
141+
),
142+
},
143+
],
138144
},
139145
{
140146
description: 'no prefix',

0 commit comments

Comments
 (0)