summaryrefslogtreecommitdiffhomepage
path: root/.prettierrc.json
diff options
context:
space:
mode:
Diffstat (limited to '.prettierrc.json')
-rw-r--r--.prettierrc.json15
1 files changed, 15 insertions, 0 deletions
diff --git a/.prettierrc.json b/.prettierrc.json
new file mode 100644
index 0000000..aacc6cf
--- /dev/null
+++ b/.prettierrc.json
@@ -0,0 +1,15 @@
+{
+ "plugins": ["prettier-plugin-svelte"],
+ "useTabs": false,
+ "tabWidth": 2,
+ "semi": true,
+ "singleQuote": false,
+ "trailingComma": "all",
+ "printWidth": 100,
+ "overrides": [
+ {
+ "files": "*.svelte",
+ "options": { "parser": "svelte" }
+ }
+ ]
+}