summaryrefslogtreecommitdiffstats
path: root/.prettierrc
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.prettierrc17
1 files changed, 17 insertions, 0 deletions
diff --git a/.prettierrc b/.prettierrc
new file mode 100644
index 0000000..6b0167a
--- /dev/null
+++ b/.prettierrc
@@ -0,0 +1,17 @@
+{
+ "useTabs": false,
+ "tabWidth": 4,
+ "singleQuote": true,
+ "trailingComma": "none",
+ "printWidth": 100,
+ "endOfLine": "lf",
+ "plugins": ["prettier-plugin-svelte"],
+ "overrides": [
+ {
+ "files": "*.svelte",
+ "options": {
+ "parser": "svelte"
+ }
+ }
+ ]
+}