From 7b388247cbf776be4f9fe58096200cc292c8c404 Mon Sep 17 00:00:00 2001 From: Ruben van der Linde Date: Wed, 12 Aug 2026 20:54:01 +0200 Subject: [PATCH] chore: delete the inert .prettierrc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Nextcloud itself uses no prettier — nextcloud/server and nextcloud/text have no prettier dependency, no format script and no prettier config; they ship .editorconfig and enforce JS/Vue formatting through @nextcloud/eslint-config. In this repo the file never ran: no prettier dependency, no format script, no workflow reference. It only took effect in editors, where its 2-space indent and double quotes are exactly what @nextcloud/eslint-config then flags. --- .prettierrc | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .prettierrc diff --git a/.prettierrc b/.prettierrc deleted file mode 100644 index cff28457..00000000 --- a/.prettierrc +++ /dev/null @@ -1,38 +0,0 @@ -{ - "overrides": [ - { - "files": ["*.json"], - "options": { - "parser": "json", - "printWidth": 120, - "tabWidth": 2 - } - }, - { - "files": ["*.ts", "*.tsx"], - "options": { - "parser": "typescript", - "printWidth": 120, - "trailingComma": "all", - "tabWidth": 2, - "singleQuote": false - } - }, - { - "files": ["*.css", "*.scss"], - "options": { - "parser": "css", - "tabWidth": 2 - } - }, - { - "files": ["conduction.css"], - "options": { - "parser": "css", - "trailingComma": "all", - "tabWidth": 2, - "printWidth": 150 - } - } - ] -}