We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 246c26b commit 51c3df5Copy full SHA for 51c3df5
test/prettier-rules.js
@@ -26,12 +26,12 @@ s = w * h; p = 2 * (w + h);
26
assert.equal(report.filePath, filePath)
27
assert.ok(
28
report.messages[0].message.includes(
29
- `Replace ··string·constant·text·=·'abc' with string·text·=·"abc"`
+ 'Replace ··string·constant·text·=·\'abc\' with string·constant·text·=·"abc"'
30
)
31
32
33
report.messages[1].message.includes(
34
- 'Replace ····function·rectangle(uint·w,·uint·h)·returns· with ⏎··function·rectangle(uint·w,·uint·h)·returns'
+ 'Replace ····function·rectangle(uint·w,·uint·h)·returns· with ··function·rectangle(uint·w,·uint·h)·returns'
35
36
37
assert.ok(report.messages[2].message.includes('Replace s·=·w·*·h; with ····s·=·w·*·h;⏎···'))
0 commit comments