From 2a0596f08fb54e2faef4bcb4548a28f5837fc067 Mon Sep 17 00:00:00 2001 From: BobIsMyManager Date: Tue, 26 Jul 2022 22:28:50 +0100 Subject: 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 --- .prettierrc.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .prettierrc.json (limited to '.prettierrc.json') 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 + } + } + ] +} -- cgit 1.4.1