We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bad8995 commit 240ebacCopy full SHA for 240ebac
2 files changed
.markdownlint.jsonc
@@ -0,0 +1,3 @@
1
+{
2
+ "default": false,
3
+}
.pre-commit-config.yaml
@@ -0,0 +1,23 @@
+# See https://pre-commit.com for more information
+# See https://pre-commit.com/hooks.html for more hooks
+repos:
4
+- repo: https://github.com/pre-commit/pre-commit-hooks
5
+ rev: v3.2.0
6
+ hooks:
7
+ - id: check-yaml
8
+ - id: check-json
9
+ - id: check-added-large-files
10
+ - id: mixed-line-ending
11
+ # - id: pretty-format-json
12
+ # exclude: package-lock.json|package.json|jsconfig.json
13
+ # args: [--autofix]
14
+ - id: sort-simple-yaml
15
+- repo: https://github.com/igorshubovych/markdownlint-cli
16
+ rev: v0.31.1
17
18
+ - id: markdownlint
19
+ args:
20
+ [
21
+ "--config",
22
+ ".markdownlint.jsonc",
23
+ ]
0 commit comments