aboutsummaryrefslogtreecommitdiff
path: root/.clippy.toml
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2021-03-31 12:51:11 -0600
committerMelody Horn <melody@boringcactus.com>2021-03-31 12:51:11 -0600
commite1a0584936b3aa5ce971e875dec750d2ae937d2e (patch)
treef1db896b9623e6480181df3ad4792107d9d87ecf /.clippy.toml
parentd10ad4b37f726180e3da562a1fbb6cbbd106ef58 (diff)
downloadmakers-e1a0584936b3aa5ce971e875dec750d2ae937d2e.tar.gz
makers-e1a0584936b3aa5ce971e875dec750d2ae937d2e.zip
massively upgrade error handling
Diffstat (limited to '.clippy.toml')
-rw-r--r--.clippy.toml6
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",
+]