Skip to content

Commit 52afad0

Browse files
committed
chore: update markdownlint config, test file
1 parent fe48c67 commit 52afad0

4 files changed

Lines changed: 29 additions & 11 deletions

File tree

.markdownlint-cli2.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
config:
2+
ul-style:
3+
style: dash
4+
ul-indent:
5+
indent: 2
6+
commands-show-output: false
7+
no-bare-urls: false
8+
line-length: false
9+
no-emphasis-as-header: false
10+
no-duplicate-header: false
11+
header-increment: false
12+
no-blanks-blockquote: false
13+
no-inline-html: false
14+
first-line-heading: false
15+
first-line-h1: false
16+
code-block-style: false
17+
ignores:
18+
- '**/node_modules/**'
19+
- 'CHANGELOG.md' # generated
20+
- '.tmp/**/*.md'
21+
- '.worktrees/**/*.md'
22+
- 'docs/plans/**/*.md'
23+
outputFormatters:
24+
- - 'markdownlint-cli2-formatter-pretty'
25+
- appendLink: true
26+
showFound: true
27+
noProgress: false

.markdownlint.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"commitlint": "commitlint",
3434
"fix": "run-s -sl fix:*",
3535
"fix:eslint": "eslint --fix .",
36+
"fix:markdown": "markdownlint-cli2 --fix \"**/*.md\"",
3637
"fix:pkg": "npm pkg fix",
3738
"fix:prettier": "prettier --write . && markdownlint-cli2 --fix \"**/*.md\"",
3839
"lint": "run-p -sl --aggregate-output lint:*",
@@ -44,7 +45,7 @@
4445
"lint:spelling": "cspell . \"./.*/**\"",
4546
"lint:types": "tsc --noEmit",
4647
"prepare": "husky; run-s -s build",
47-
"test": "run-s test:runtime test:types",
48+
"test": "run-s test:runtime",
4849
"test:runtime": "node --import tsx --test --test-reporter=spec \"test/**/*.test.ts\"",
4950
"test:watch": "node --import tsx --test --test-reporter=spec --watch \"test/**/*.test.ts\""
5051
},
File renamed without changes.

0 commit comments

Comments
 (0)