File tree 1 file changed +5
-6
lines changed
1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -88,16 +88,15 @@ module.exports = {
88
88
89
89
## Prettier Support
90
90
91
- Prettier is a code formatter, which supports not only JavaScript but also other languages.
92
- Prettier is used widely for a code formatter for JavaScript.
91
+ Prettier is a code formatter, which supports not only JavaScript but also many languages.
92
+ Prettier is used widely as code formatter for JavaScript.
93
93
94
- It's an opinionated tool but with Prettier, we don't have to discuss code styles in code review.
95
- (No more bikeshed)
94
+ It's opinionated but we don't have to discuss about code styles with Prettier because it's the rule (No more bikeshed).
96
95
97
- The presets disable all rules conflicting with Prettier and treat the difference as errors.
96
+ The following presets disable all rules that conflict with Prettier and treat the differences between Prettier's code format as errors.
98
97
You can fix the errors by ` --fix ` option so you don't have to fix the errors manually.
99
98
100
- In order to this , you have to install ` prettier ` and choose a preset from the followings .
99
+ To use the presets , you have to install ` prettier ` . We only support Prettier v2 or later versions .
101
100
102
101
```
103
102
% npm install --save-dev prettier
You can’t perform that action at this time.
0 commit comments