aboutsummaryrefslogtreecommitdiffstats
path: root/.prettierrc.json
diff options
context:
space:
mode:
authorBobIsMyManager <bimmgitsignature.nly8m@simplelogin.co>2022-07-26 22:28:50 +0100
committerBobIsMyManager <bimmgitsignature.nly8m@simplelogin.co>2022-07-26 22:28:50 +0100
commit2a0596f08fb54e2faef4bcb4548a28f5837fc067 (patch)
treecf5851f95c37da269a561623cee0d3967ca321ec /.prettierrc.json
parentI should really inspect diffs before commiting (diff)
downloadlibredirect-2a0596f08fb54e2faef4bcb4548a28f5837fc067.zip
Many things
Made all instances updateable Added hyperpipe Closes https://github.com/libredirect/libredirect/issues/398 Added cloudtube Closes https://github.com/libredirect/libredirect/issues/397 Start using prettier
Diffstat (limited to '.prettierrc.json')
-rw-r--r--.prettierrc.json23
1 files changed, 23 insertions, 0 deletions
diff --git a/.prettierrc.json b/.prettierrc.json
new file mode 100644
index 00000000..d0df3f36
--- /dev/null
+++ b/.prettierrc.json
@@ -0,0 +1,23 @@
+{
+ "semi": false,
+ "tabWidth": 2,
+ "useTabs": true,
+ "arrowParens": "avoid",
+ "printWidth": 200,
+ "overrides": [
+ {
+ "files": ["*.js", "*.json"],
+ "options": {
+ "tabWidth": 2,
+ "singleQuote": false
+ }
+ },
+ {
+ "files": ["*.html", "*.py"],
+ "options": {
+ "tabWidth": 4,
+ "singleQuote": true
+ }
+ }
+ ]
+}