diff options
Diffstat (limited to '.prettierrc.json')
-rw-r--r-- | .prettierrc.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.prettierrc.json b/.prettierrc.json new file mode 100644 index 00000000..864a0cc8 --- /dev/null +++ b/.prettierrc.json @@ -0,0 +1,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 + } + } + ] +} |