Add linting for markdown files (#3646)

I also reworked the Linters section in `CONTRIBUTING.md` a bit and
switched the `prettier` config to a flat config.

Co-authored-by: Veeck <github@veeck.de>
This commit is contained in:
Kristjan ESPERANTO
2024-12-07 10:12:28 +01:00
committed by GitHub
parent 19bd76ab93
commit 5b7b76c877
11 changed files with 252 additions and 22 deletions

13
prettier.config.mjs Normal file
View File

@@ -0,0 +1,13 @@
const config = {
overrides: [
{
files: "*.md",
options: {
parser: "markdown"
}
}
],
trailingComma: "none"
};
export default config;