summaryrefslogtreecommitdiff
path: root/.prettierrc
diff options
context:
space:
mode:
authorl3wdfut4pwr <l3wdfut4pwr@gmail.com>2025-12-30 13:46:39 +0200
committerl3wdfut4pwr <l3wdfut4pwr@gmail.com>2025-12-30 13:46:39 +0200
commitc3dcb9c827df6d80ad1b0b1a7c6155561527b39d (patch)
tree76d8b9e706f9e8fcf7acc157a633905ff16c6b74 /.prettierrc
init
Diffstat (limited to '.prettierrc')
-rw-r--r--.prettierrc16
1 files changed, 16 insertions, 0 deletions
diff --git a/.prettierrc b/.prettierrc
new file mode 100644
index 0000000..fb744ec
--- /dev/null
+++ b/.prettierrc
@@ -0,0 +1,16 @@
+{
+ "singleQuote": true,
+ "trailingComma": "all",
+ "printWidth": 80,
+ "tabWidth": 4,
+ "semi": true,
+ "overrides": [
+ {
+ "files": ["*.yml", "*.yaml"],
+ "options": {
+ "useTabs": true,
+ "tabWidth": 2
+ }
+ }
+ ]
+}