Skip to content

Commit e3d1571

Browse files
authored
prettier: Disable for markdown files (#12333)
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.
1 parent 268e46e commit e3d1571

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
"lint:hbs": "ember-template-lint app",
2323
"lint:js": "eslint . --cache",
2424
"precompress": "node ./script/precompress-assets.mjs",
25-
"prettier:check": "prettier --check package.json '**/*.js' '**/*.mjs' '**/*.ts' '**/*.md'",
26-
"prettier:write": "prettier --write package.json '**/*.js' '**/*.mjs' '**/*.ts' '**/*.md'",
25+
"prettier:check": "prettier --check package.json '**/*.js' '**/*.mjs' '**/*.ts'",
26+
"prettier:write": "prettier --write package.json '**/*.js' '**/*.mjs' '**/*.ts'",
2727
"start": "ember serve",
2828
"start:docker": "ember serve --proxy http://backend:8888",
2929
"start:live": "ember serve --proxy https://crates.io",

0 commit comments

Comments
 (0)