Skip to content

Commit 44b16d4

Browse files
authored
chore(config): Add word lists to ignore for spell checks (#113)
- Add config for reviewdog to address common false flag errors - Add config to ignore code examples in code blocks
1 parent 872d879 commit 44b16d4

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.languagetool.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
language: en-US
2+
disabledRules: []
3+
enabledRules: []
4+
disabledCategories: []
5+
dictionary:
6+
- OpenTDF
7+
- SDKs
8+
# This helps LanguageTool understand Markdown format
9+
markup:
10+
- markdown
11+
# Skip code blocks and inline code
12+
skipPatterns:
13+
- '```[\s\S]*?```' # Skip fenced code blocks
14+
- '`[^`]*`' # Skip inline code

0 commit comments

Comments
 (0)