about summary refs log tree commit diff stats
path: root/.prettierrc.json
blob: 3ac20a06e1dafa5e1637e73c1b01db57bb80091d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
	"semi": false,
	"tabWidth": 2,
	"useTabs": true,
	"arrowParens": "avoid",
	"printWidth": 200,
	"bracketSameLine": true,
	"overrides": [
		{
			"files": ["*.js", "*.json"],
			"options": {
				"singleQuote": false
			}
		},
		{
			"files": ["*.html", "*.py"],
			"options": {
				"tabWidth": 4,
				"singleQuote": true
			}
		}
	]
}