12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- [workspace]
- resolver = "2"
- members = [
- "src/sql-lexer-wasm",
- "src/sql-pretty-wasm",
- ]
- [workspace.package]
- edition = "2021"
- rust-version = "1.76.0"
- # BEGIN LINT CONFIG
- # DO NOT EDIT. Automatically generated by bin/gen-lints.
- [workspace.lints.rust]
- unknown_lints = "allow"
- non_local_definitions = "allow"
- unexpected_cfgs = { level = "warn", check-cfg = ['cfg(bazel, stamped, coverage, nightly_doc_features, release, tokio_unstable)'] }
- [workspace.lints.rustdoc]
- [workspace.lints.clippy]
- style = { level = "allow", priority = -1 }
- complexity = { level = "allow", priority = -1 }
- large_enum_variant = { level = "allow", priority = 0 }
- result_large_err = { level = "allow", priority = 0 }
- mutable_key_type = { level = "allow", priority = 0 }
- stable_sort_primitive = { level = "allow", priority = 0 }
- map_entry = { level = "allow", priority = 0 }
- box_default = { level = "allow", priority = 0 }
- drain_collect = { level = "allow", priority = 0 }
- bool_comparison = "warn"
- clone_on_ref_ptr = "warn"
- no_effect = "warn"
- unnecessary_unwrap = "warn"
- dbg_macro = "warn"
- todo = "warn"
- zero_prefixed_literal = "warn"
- borrowed_box = "warn"
- deref_addrof = "warn"
- double_must_use = "warn"
- double_parens = "warn"
- extra_unused_lifetimes = "warn"
- needless_borrow = "warn"
- needless_question_mark = "warn"
- needless_return = "warn"
- redundant_pattern = "warn"
- redundant_slicing = "warn"
- redundant_static_lifetimes = "warn"
- single_component_path_imports = "warn"
- unnecessary_cast = "warn"
- useless_asref = "warn"
- useless_conversion = "warn"
- builtin_type_shadow = "warn"
- duplicate_underscore_argument = "warn"
- double_negations = "warn"
- unnecessary_mut_passed = "warn"
- wildcard_in_or_patterns = "warn"
- crosspointer_transmute = "warn"
- excessive_precision = "warn"
- panicking_overflow_checks = "warn"
- as_conversions = "warn"
- match_overlapping_arm = "warn"
- zero_divided_by_zero = "warn"
- must_use_unit = "warn"
- suspicious_assignment_formatting = "warn"
- suspicious_else_formatting = "warn"
- suspicious_unary_op_formatting = "warn"
- mut_mutex_lock = "warn"
- print_literal = "warn"
- same_item_push = "warn"
- useless_format = "warn"
- write_literal = "warn"
- redundant_closure = "warn"
- redundant_closure_call = "warn"
- unnecessary_lazy_evaluations = "warn"
- partialeq_ne_impl = "warn"
- redundant_field_names = "warn"
- transmutes_expressible_as_ptr_casts = "warn"
- unused_async = "warn"
- disallowed_methods = "warn"
- disallowed_macros = "warn"
- disallowed_types = "warn"
- from_over_into = "warn"
- mod_module_files = "warn"
- needless_pass_by_ref_mut = "warn"
- borrow_interior_mutable_const = "warn"
- or_fun_call = "warn"
- # END LINT CONFIG
|