-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.prettierrc.js
More file actions
36 lines (35 loc) · 766 Bytes
/
Copy path.prettierrc.js
File metadata and controls
36 lines (35 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
'use strict';
module.exports = {
arrowParens: 'always',
bracketSpacing: true,
endOfLine: 'lf',
printWidth: 80,
singleQuote: true,
tabWidth: 2,
trailingComma: 'all',
quoteProps: 'as-needed',
semi: true,
overrides: [{
files: '*.md',
options: {
arrowParens: always,
bracketSameLine: true,
bracketSpacing: true,
embeddedLanguageFormatting: off,
htmlWhitespaceSensitivity: strict,
insertPragma: false,
jsxSingleQuote: false,
printWidth: 110,
proseWrap: always,
quoteProps: as - needed,
requirePragma: false,
semi: true,
singleQuote: false,
tabWidth: 2,
trailingComma: all,
useTabs: true,
vueIndentScriptAndStyle: false,
},
},
],
};