about summary refs log tree commit diff
path: root/users/Profpatsch/.prettierrc
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2024-10-04T18·35+0200
committerProfpatsch <mail@profpatsch.de>2024-10-05T13·49+0000
commit9c8087d705456ab6a0ec12a30a63e54cf3d8b0f2 (patch)
treee4ef715fdffb4857dd48a6828c25fd0da4e88421 /users/Profpatsch/.prettierrc
parent9c1e3687fe90bb30129b40c89bb7ea29d648c4d1 (diff)
feat(users/Profpatsch): move eslint & prettier to toplevel r/8770
the linters & prettier config should apply to my whole subdir.

This is somewhat nasty, you have to `npm` in the toplevel dir before
it starts working, otoh dev tooling is dev time and I’m working on
these alone.

Change-Id: I96721f549b24a40b7ffbb2d310f37a40d2590b2b
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12573
Tested-by: BuildkiteCI
Reviewed-by: Profpatsch <mail@profpatsch.de>
Diffstat (limited to 'users/Profpatsch/.prettierrc')
-rw-r--r--users/Profpatsch/.prettierrc8
1 files changed, 8 insertions, 0 deletions
diff --git a/users/Profpatsch/.prettierrc b/users/Profpatsch/.prettierrc
new file mode 100644
index 000000000000..e97f84abaf62
--- /dev/null
+++ b/users/Profpatsch/.prettierrc
@@ -0,0 +1,8 @@
+{
+  "trailingComma": "all",
+  "tabWidth": 2,
+  "semi": true,
+  "singleQuote": true,
+  "printWidth": 90,
+  "arrowParens": "avoid"
+}