-
Notifications
You must be signed in to change notification settings - Fork 8
/
.markdownlint-cli2.jsonc
36 lines (36 loc) · 1.08 KB
/
.markdownlint-cli2.jsonc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Markdown Lint Configuration.
// Do not change markdown lint configuration in individual files,
// except to disable rules which are causing false positives.
{
// Configures the markdownlint-cli2 tool only.
// For common markdownlint configuration which this tool also uses, see: ./.markdownlint.jsonc
"globs": [
"**/*.md"
],
"ignores": [
".config/dictionaries/**",
"catalyst-gateway/target/**",
"CHANGELOG.md",
"catalyst_voices/packages/libs/**/CHANGELOG.md",
"catalyst_voices/packages/libs/**/cargokit/**",
"catalyst_voices/apps/voices/macos/Pods/**",
"**/node_modules/**",
"**/.dart_tool/**"
],
// Set standard config options in `/.markdownlint.jsonc`
"config": {
"max-one-sentence-per-line": {
"ignored__words": [
"???+",
"???",
"!!!+",
"!!!"
]
}
},
"customRules": [
// For local development, this custom rule needs to be installed with:
// `npm install -g --no-package-lock --production markdownlint-rule-max-one-sentence-per-line`
"markdownlint-rule-max-one-sentence-per-line"
]
}