Haleshot commited on
Commit
49a1d00
·
unverified ·
1 Parent(s): 8bc43c8

Fix typos workflow to handle LaTeX

Browse files
Files changed (2) hide show
  1. .github/workflows/typos.yaml +2 -0
  2. .typos.toml +18 -0
.github/workflows/typos.yaml CHANGED
@@ -13,3 +13,5 @@ jobs:
13
  uses: styfle/[email protected]
14
  - uses: actions/checkout@v4
15
  - uses: crate-ci/[email protected]
 
 
 
13
  uses: styfle/[email protected]
14
  - uses: actions/checkout@v4
15
  - uses: crate-ci/[email protected]
16
+ with:
17
+ config: .typos.toml
.typos.toml ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [default]
2
+ extend-ignore-re = [
3
+ # LaTeX math expressions
4
+ "\\\\\\[.*?\\\\\\]",
5
+ "\\\\\\(.*?\\\\\\)",
6
+ "\\$\\$.*?\\$\\$",
7
+ "\\$.*?\\$",
8
+ # LaTeX commands
9
+ "\\\\[a-zA-Z]+\\{.*?\\}",
10
+ "\\\\[a-zA-Z]+",
11
+ # LaTeX subscripts and superscripts
12
+ "_\\{.*?\\}",
13
+ "\\^\\{.*?\\}"
14
+ ]
15
+
16
+ # You can also exclude specific files or directories if needed
17
+ # [files]
18
+ # extend-exclude = ["*.tex", "docs/*.md"]