Commit 056cf4c 1 parent 98bf5a9 commit 056cf4c Copy full SHA for 056cf4c
File tree 3 files changed +21
-3
lines changed
3 files changed +21
-3
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ cryptographic
26
26
deallocate
27
27
deallocation
28
28
decodable
29
+ decrement
29
30
defrag
30
31
defragmentation
31
32
deploy
@@ -42,17 +43,23 @@ invariants
42
43
kB
43
44
layed
44
45
multisig
46
+ multi
45
47
postfix
46
48
prefilled
47
49
recurse
50
+ refcount
48
51
scalability
49
52
scalable
50
53
stdin
51
54
stdout
55
+ tuple
56
+ unordered
52
57
untyped
53
58
validator
54
59
variadic
55
60
61
+ Django/S
62
+ IP/S
56
63
NFT/S
57
64
accessor/S
58
65
allocator/S
@@ -67,6 +74,7 @@ hashmap/S
67
74
instantiation/S
68
75
layout/JG
69
76
namespace/S
77
+ parameterize/SD
70
78
runtime/S
71
79
struct/S
72
80
vec/S
Original file line number Diff line number Diff line change @@ -3,6 +3,16 @@ lang = "en_US"
3
3
search_dirs = [" ." ]
4
4
extra_dictionaries = [" cargo_spellcheck.dic" ]
5
5
6
+ # If set to `true`, the OS specific default search paths are skipped and only explicitly
7
+ # specified ones are used.
8
+ skip_os_lookups = true
9
+
10
+ # Use the builtin dictionaries if none were found in in the configured lookup paths.
11
+ # Usually combined with `skip_os_lookups=true` to enforce the `builtin` usage for
12
+ # consistent results across distributions and CI runs. Setting this will still use the
13
+ # dictionaries specified in `extra_dictionaries = [..]` for topic specific lingo.
14
+ use_builtin = true
15
+
6
16
[Hunspell .quirks ]
7
17
allow_concatenation = true
8
18
allow_dashes = true
Original file line number Diff line number Diff line change @@ -153,12 +153,12 @@ spellcheck:
153
153
stage : workspace
154
154
<< : *docker-env
155
155
script :
156
- - cargo spellcheck check --cfg=.config/cargo_spellcheck.toml --checkers hunspell --code 1
156
+ - cargo spellcheck check -vvv - -cfg=.config/cargo_spellcheck.toml --checkers hunspell --code 1
157
157
- for example in examples/*/; do
158
- cargo spellcheck check --cfg=.config/cargo_spellcheck.toml --checkers hunspell --code 1 ${example};
158
+ cargo spellcheck check -vvv - -cfg=.config/cargo_spellcheck.toml --checkers hunspell --code 1 ${example};
159
159
done
160
160
- for contract in ${DELEGATOR_SUBCONTRACTS}; do
161
- cargo spellcheck check --cfg=.config/cargo_spellcheck.toml --checkers hunspell --code 1 examples/delegator/${contract}/;
161
+ cargo spellcheck check -vvv - -cfg=.config/cargo_spellcheck.toml --checkers hunspell --code 1 examples/delegator/${contract}/;
162
162
done
163
163
164
164
codecov :
You can’t perform that action at this time.
0 commit comments