Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
*

!*.md
!*.mdx

!*/

assets/**
static/**
README.md
CHANGELOG.md
Contributing.md
CONTRIBUTING.md
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
"typecheck": "tsc",
"build-likec4": "likec4 build ./assets/likec4 --base /likec4 -o ./static/likec4",
"build-git-batch": "docker run --rm -w $(pwd) -v $(pwd):$(pwd) quay.io/thegeeklab/git-batch",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"format:check": "prettier --check '**/*.{md,mdx,markdown}'",
"format:write": "prettier --write '**/*.{md,mdx,markdown}'",
"lint:md": "markdownlint-cli2 '**/*.{md,markdown}'",
Comment thread
AlexAndBear marked this conversation as resolved.
Outdated
"lint:md:fix": "markdownlint-cli2 --fix '**/*.{md,markdown}'"
"lint:md:fix": "markdownlint-cli2 --fix '**/*.{md,mdx,markdown}'"
},
"dependencies": {
"@docusaurus/core": "3.7.0",
Expand Down