We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d91a8e5 commit c5cce56Copy full SHA for c5cce56
1 file changed
prettier.config.js
@@ -2,18 +2,18 @@ module.exports = {
2
// These settings are duplicated in .editorconfig:
3
tabWidth: 2, // indent_size = 2
4
useTabs: false, // indent_style = space
5
- endOfLine: "lf", // end_of_line = lf
+ endOfLine: 'lf', // end_of_line = lf
6
semi: false, // default: true
7
singleQuote: true, // default: false
8
- printWidth: 100, // default: 80
9
- trailingComma: "es5",
+ printWidth: 120, // default: 80
+ trailingComma: 'es5',
10
bracketSpacing: true,
11
overrides: [
12
{
13
- files: "*.js",
+ files: '*.js',
14
options: {
15
- parser: "flow",
+ parser: 'flow',
16
},
17
18
],
19
-};
+}
0 commit comments