summaryrefslogtreecommitdiff
path: root/.prettierrc.json
diff options
context:
space:
mode:
authorTaylor Mullen <[email protected]>2025-04-17 17:57:39 -0400
committerN. Taylor Mullen <[email protected]>2025-04-17 15:29:34 -0700
commit7928c1727f0b208ed34850cc89bbb36ea3dd23e5 (patch)
tree928446c3561805c0e6f89dfc2f75a856dcc9c980 /.prettierrc.json
parentd3ee91ff9203f8591ca7a7101ce9ccadeb8137be (diff)
Configure linter + prettier.
- This is based on existing expectations for TS code in Google-esc repos. - First part of the change (we have not run any linter or formatting commands). After this changeset goes in I'll do a mass changeset push. Fixes https://b.corp.google.com/issues/411384603
Diffstat (limited to '.prettierrc.json')
-rw-r--r--.prettierrc.json7
1 files changed, 7 insertions, 0 deletions
diff --git a/.prettierrc.json b/.prettierrc.json
new file mode 100644
index 00000000..694a6ff7
--- /dev/null
+++ b/.prettierrc.json
@@ -0,0 +1,7 @@
+{
+ "semi": true,
+ "trailingComma": "all",
+ "singleQuote": true,
+ "printWidth": 80,
+ "tabWidth": 2
+}