From 46b5e9b03612fa8961beda4beb1e66096ae60d58 Mon Sep 17 00:00:00 2001 From: Benjamin Staneck Date: Fri, 28 Apr 2023 16:32:51 +0200 Subject: [PATCH] Delete various old config files Delete `jsconfig.json` This file actually did nothing since we have a `tsconfig.json`. Behavior does not change since `checkJs` is `false` in both. Delete `.jsbeautifyrc` Was not used from what I could tell and we have a ESFormatter config file as well and that is basically the successor. Delete `.csscomb.json` Was not used from what I could tell, also the project seems dead, last publish 4 years ago. Also we have stylelint in place that covers CSS. (cherry picked from commit 0da89478cc7a5eec7a35bff47e34b824487661a1) Closes #3619 --- frontend/.csscomb.json | 25 ------------------------- frontend/.jsbeautifyrc | 12 ------------ 2 files changed, 37 deletions(-) delete mode 100644 frontend/.csscomb.json delete mode 100644 frontend/.jsbeautifyrc diff --git a/frontend/.csscomb.json b/frontend/.csscomb.json deleted file mode 100644 index a82e49732..000000000 --- a/frontend/.csscomb.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "remove-empty-rulesets": true, - "always-semicolon": true, - "color-case": "lower", - "block-indent": " ", - "color-shorthand": false, - "element-case": "lower", - "eof-newline": true, - "leading-zero": true, - "quotes": "double", - "sort-order-fallback": "abc", - "space-before-colon": "", - "space-after-colon": " ", - "space-before-combinator": " ", - "space-after-combinator": " ", - "space-between-declarations": "\n", - "space-before-opening-brace": " ", - "space-after-opening-brace": "\n", - "space-after-selector-delimiter": " ", - "space-before-selector-delimiter": "", - "space-before-closing-brace": "\n", - "strip-spaces": true, - "tab-size": true, - "unitless-zero": false -} diff --git a/frontend/.jsbeautifyrc b/frontend/.jsbeautifyrc deleted file mode 100644 index 50aa6aa29..000000000 --- a/frontend/.jsbeautifyrc +++ /dev/null @@ -1,12 +0,0 @@ -{ - "js": { - "indent_size": 2, - "indent_char": " ", - "indent_level": 2, - "indent_with_tabs": false, - "preserve_newlines": true, - "brace_style": "collapse", - "max_preserve_newlines": 2, - "jslint_happy": true - } -} \ No newline at end of file