From 58b3978fbdb034872d24ee554bc350400cbfb57c Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Fri, 14 Nov 2025 10:26:19 +0100 Subject: [PATCH] prettier: Disable for markdown files This is causing more pain than it is worth, especially since the prettier check currently only runs in the frontend test suite, so if a backend pull request introduces a new markdown file the CI will fail on some future run instead of on the PR. Sure, we can fix that, but is it worth the complexity? IMHO no. --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 942198d2297..44dc37c869b 100644 --- a/package.json +++ b/package.json @@ -22,8 +22,8 @@ "lint:hbs": "ember-template-lint app", "lint:js": "eslint . --cache", "precompress": "node ./script/precompress-assets.mjs", - "prettier:check": "prettier --check package.json '**/*.js' '**/*.mjs' '**/*.ts' '**/*.md'", - "prettier:write": "prettier --write package.json '**/*.js' '**/*.mjs' '**/*.ts' '**/*.md'", + "prettier:check": "prettier --check package.json '**/*.js' '**/*.mjs' '**/*.ts'", + "prettier:write": "prettier --write package.json '**/*.js' '**/*.mjs' '**/*.ts'", "start": "ember serve", "start:docker": "ember serve --proxy http://backend:8888", "start:live": "ember serve --proxy https://crates.io",