-
Notifications
You must be signed in to change notification settings - Fork 1
/
clippy.toml
95 lines (72 loc) · 2.35 KB
/
clippy.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[[disallowed-methods]]
path = "std::process::Command::output"
reason = "Use command_error::CommandExt::output_checked[_with][_utf8]"
[[disallowed-methods]]
path = "std::process::Command::status"
reason = "Use command_error::CommandExt::status_checked[_with]"
[[disallowed-methods]]
path = "std::process::Command::spawn"
reason = "Use command_error::CommandExt::spawn_checked"
[[disallowed-methods]]
path = "std::process::Child::try_wait"
reason = "Use command_error::ChildExt::try_wait_checked[_with]"
[[disallowed-methods]]
path = "std::process::Child::wait"
reason = "Use command_error::ChildExt::wait_checked[_with]"
[[disallowed-methods]]
path = "std::process::Child::wait_with_output"
reason = "Use command_error::ChildExt::output_checked[_with][_utf8]"
[[disallowed-methods]]
path = "fs_err::rename"
reason = "Use git_prole::fs::rename"
[[disallowed-methods]]
path = "std::fs::rename"
reason = "Use git_prole::fs::rename"
[[disallowed-methods]]
path = "fs_err::create_dir_all"
reason = "Use git_prole::fs::create_dir_all"
[[disallowed-methods]]
path = "std::fs::create_dir_all"
reason = "Use git_prole::fs::create_dir_all"
[[disallowed-methods]]
path = "fs_err::create_dir"
reason = "Use git_prole::fs::create_dir"
[[disallowed-methods]]
path = "std::fs::create_dir"
reason = "Use git_prole::fs::create_dir"
[[disallowed-methods]]
path = "fs_err::remove_dir"
reason = "Use git_prole::fs::remove_dir"
[[disallowed-methods]]
path = "std::fs::remove_dir"
reason = "Use git_prole::fs::remove_dir"
[[disallowed-methods]]
path = "fs_err::read_to_string"
reason = "Use git_prole::fs::read_to_string"
[[disallowed-methods]]
path = "std::fs::read_to_string"
reason = "Use git_prole::fs::read_to_string"
[[disallowed-methods]]
path = "fs_err::read_dir"
reason = "Use git_prole::fs::read_dir"
[[disallowed-methods]]
path = "std::fs::read_dir"
reason = "Use git_prole::fs::read_dir"
[[disallowed-methods]]
path = "fs_err::copy"
reason = "Use git_prole::fs::copy"
[[disallowed-methods]]
path = "std::fs::copy"
reason = "Use git_prole::fs::copy"
[[disallowed-methods]]
path = "fs_err::write"
reason = "Use git_prole::fs::copy"
[[disallowed-methods]]
path = "std::fs::write"
reason = "Use git_prole::fs::copy"
[[disallowed-types]]
path = "std::collections::HashMap"
reason = "Use rustc_hash::FxHashMap"
[[disallowed-types]]
path = "std::collections::HashSet"
reason = "Use rustc_hash::FxHashSet"