File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change
1
+ # This is a sample .typo-ci.yml file, it's used to configure how Typo CI will behave.
2
+ # Add it to the root of your project and push it to github.
3
+ ---
4
+ # What language dictionaries should it use? By default Typo CI will select 'en' & 'en_GB'
5
+ # Currently Typo CI supports:
6
+ # de
7
+ # en
8
+ # en_GB
9
+ # es
10
+ # fr
11
+ # it
12
+ # nl
13
+ # pt
14
+ # pt_BR
15
+ # tr
16
+ dictionaries :
17
+ - en
18
+ - en_GB
19
+
20
+ # Any files/folders we should ignore?
21
+ excluded_files :
22
+ - " vendor/**/*"
23
+ - " node_modules/**/*"
24
+ - " *.key"
25
+ - " *.enc"
26
+ - " *.min.css"
27
+ - " *.css.map"
28
+ - " *.min.js"
29
+ - " *.js.map"
30
+ - " *.mk"
31
+ - " package-lock.json"
32
+ - " yarn.lock"
33
+ - " Gemfile.lock"
34
+ - " .typo-ci.yml"
35
+ - " .github/.typo-ci.yml"
36
+
37
+ # Any words we should ignore?
38
+ excluded_words :
39
+ - typoci
40
+ - OpenInColab
41
+
42
+ # Would you like filenames to also be spellchecked?
43
+ spellcheck_filenames : true
You can’t perform that action at this time.
0 commit comments