aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
new file mode 100644
index 0000000..ebe3785
--- /dev/null
+++ b/src/lib.rs
@@ -0,0 +1,22 @@
+#![warn(clippy::pedantic)]
+#![warn(clippy::nursery)]
+// clippy::cargo seems to be broken with rls currently
+// #![warn(clippy::cargo)]
+#![allow(clippy::collapsible_if)]
+#![allow(clippy::if_not_else)]
+// match_same_arms is buggy, doesn't notice differences due to match arm order
+#![allow(clippy::match_same_arms)]
+#![allow(clippy::module_name_repetitions)]
+#![allow(clippy::multiple_crate_versions)]
+#![allow(clippy::single_match)]
+#![allow(clippy::write_with_newline)]
+
+mod builtins;
+mod eval;
+mod parser;
+mod process;
+mod readline;
+mod state;
+
+pub mod repl;
+pub mod tui;