Skip to content

Commit f003676

Browse files
authored
Merge branch 'master' into fix-507
2 parents a51512b + 6b47904 commit f003676

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

docs/users/configuration_file.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,19 @@ even in the case that they are directly referenced in a command line invocation.
5555
```toml
5656
# .mdformat.toml
5757
exclude = [
58-
"CHANGELOG.md", # exclude a single root level file
59-
"venv/**", # recursively exclude a root level directory
60-
"**/node_modules/**", # recursively exclude a directory at any level
61-
"**/*.txt", # exclude all .txt files
62-
"**/*.m[!d]", "**/*.[!m]d", # exclude all files that are not suffixed .md
58+
# exclude a single root level file
59+
"CHANGELOG.md",
60+
61+
# recursively exclude a root level directory
62+
"venv/**",
63+
64+
# recursively exclude a directory at any level
65+
"**/node_modules/**",
66+
67+
# exclude all .txt files
68+
"**/*.txt",
69+
70+
# exclude all files that are not suffixed .md
71+
"**/?", "**/??", "**/???", "**/*[!.]??", "**/*[!m]?", "**/*[!d]",
6372
]
6473
```

0 commit comments

Comments
 (0)