We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd3e99c commit e33f2c6Copy full SHA for e33f2c6
2 files changed
checks/.typos.toml
@@ -0,0 +1,5 @@
1
+[default]
2
+extend-ignore-words-re = [
3
+ # ignore some correct command line tools
4
+ "exportfs"
5
+]
checks/default.nix
@@ -6,7 +6,11 @@
6
hooks = {
7
nixfmt-rfc-style.enable = true;
8
deadnix.enable = true;
9
- typos.enable = true;
+ # typos.enable = true;
10
+ typos = {
11
+ enable = true;
12
+ settings.configPath = "checks/.typos.toml";
13
+ };
14
};
15
16
}
0 commit comments