.prettierrc

 1{
 2    "singleQuote": true,
 3    "tabWidth": 4,
 4    "useTabs": false,
 5    "printWidth": 120,
 6    "overrides": [
 7        {
 8            "files": ["*.yml", "*.yaml"],
 9            "options": {
10                "tabWidth": 2,
11                "singleQuote": false
12            }
13        }
14    ]
15}