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