diff options
author | Melody Horn <melody@boringcactus.com> | 2021-03-31 12:51:11 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2021-03-31 12:51:11 -0600 |
commit | e1a0584936b3aa5ce971e875dec750d2ae937d2e (patch) | |
tree | f1db896b9623e6480181df3ad4792107d9d87ecf /.clippy.toml | |
parent | d10ad4b37f726180e3da562a1fbb6cbbd106ef58 (diff) | |
download | makers-e1a0584936b3aa5ce971e875dec750d2ae937d2e.tar.gz makers-e1a0584936b3aa5ce971e875dec750d2ae937d2e.zip |
massively upgrade error handling
Diffstat (limited to '.clippy.toml')
-rw-r--r-- | .clippy.toml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.clippy.toml b/.clippy.toml new file mode 100644 index 0000000..ffa12fc --- /dev/null +++ b/.clippy.toml @@ -0,0 +1,6 @@ +disallowed-methods = [ + "core::option::Option::unwrap", + "core::option::Option::expect", + "core::result::Result::unwrap", + "core::result::Result::expect", +] |