Akshay Agrawal commited on
Commit
157ee83
·
unverified ·
2 Parent(s): d97ddf0 1626bbd

Merge pull request #88 from marimo-team/haleshot/fix-typos-LaTeX-FP

Browse files
Files changed (2) hide show
  1. .github/workflows/typos.yaml +2 -0
  2. .typos.toml +22 -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,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ # Words to explicitly accept
17
+ [default.extend-words]
18
+ pn = "pn"
19
+
20
+ # You can also exclude specific files or directories if needed
21
+ # [files]
22
+ # extend-exclude = ["*.tex", "docs/*.md"]