libredirect/.prettierrc.json

24 lines
335 B
JSON

{
"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
}
}
]
}