Skip to content

cleanup (#124)

cleanup (#124) #177

GitHub Actions / clippy succeeded Aug 31, 2023 in 1s

clippy

11 warnings

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 11
Note 0
Help 0

Versions

  • rustc 1.72.0 (5680fa18f 2023-08-23)
  • cargo 1.72.0 (103a7ff2e 2023-08-15)
  • clippy 0.1.72 (5680fa1 2023-08-23)

Annotations

Check warning on line 197 in src/lang/ts/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

`panic` should not be present in production code

warning: `panic` should not be present in production code
   --> src/lang/ts/mod.rs:197:44
    |
197 |                         .unwrap_or_else(|| panic!("Type {} has no value!", r.name));
    |                                            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#panic

Check warning on line 195 in src/lang/ts/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

`panic` should not be present in production code

warning: `panic` should not be present in production code
   --> src/lang/ts/mod.rs:195:44
    |
195 |                         .unwrap_or_else(|| panic!("Type {} not found!", r.name))
    |                                            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#panic
note: the lint level is defined here
   --> src/lib.rs:58:43
    |
58  | #![warn(clippy::all, clippy::unwrap_used, clippy::panic, missing_docs)]
    |                                           ^^^^^^^^^^^^^

Check warning on line 20 in src/export/ts.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

useless conversion to the same type: `export::export::TypesIter`

warning: useless conversion to the same type: `export::export::TypesIter`
  --> src/export/ts.rs:19:17
   |
19 |       let types = get_types()?
   |  _________________^
20 | |         .into_iter()
   | |____________________^ help: consider removing `.into_iter()`: `get_types()?`
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion
   = note: `#[warn(clippy::useless_conversion)]` implied by `#[warn(clippy::all)]`

Check warning on line 1 in src/export/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

module has the same name as its containing module

warning: module has the same name as its containing module
 --> src/export/mod.rs:1:1
  |
1 | mod export;
  | ^^^^^^^^^^^
  |
  = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#module_inception
  = note: `#[warn(clippy::module_inception)]` implied by `#[warn(clippy::all)]`

Check warning on line 19 in src/datatype/tuple.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

missing documentation for a struct field

warning: missing documentation for a struct field
  --> src/datatype/tuple.rs:19:9
   |
19 |         generics: Vec<GenericType>,
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^

Check warning on line 18 in src/datatype/tuple.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

missing documentation for a struct field

warning: missing documentation for a struct field
  --> src/datatype/tuple.rs:18:9
   |
18 |         fields: Vec<DataType>,
   |         ^^^^^^^^^^^^^^^^^^^^^

Check warning on line 21 in src/datatype/object.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

missing documentation for a struct field

warning: missing documentation for a struct field
  --> src/datatype/object.rs:21:5
   |
21 |     pub tag: Option<Cow<'static, str>>,
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Check warning on line 20 in src/datatype/object.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

missing documentation for a struct field

warning: missing documentation for a struct field
  --> src/datatype/object.rs:20:5
   |
20 |     pub fields: Vec<ObjectField>,
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Check warning on line 19 in src/datatype/object.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

missing documentation for a struct field

warning: missing documentation for a struct field
  --> src/datatype/object.rs:19:5
   |
19 |     pub generics: Vec<GenericType>,
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
note: the lint level is defined here
  --> src/lib.rs:58:58
   |
58 | #![warn(clippy::all, clippy::unwrap_used, clippy::panic, missing_docs)]
   |                                                          ^^^^^^^^^^^^

Check warning on line 66 in src/lang/ts/reserved_terms.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

constant `RESERVED_IDENTS` is never used

warning: constant `RESERVED_IDENTS` is never used
  --> src/lang/ts/reserved_terms.rs:66:18
   |
66 | pub(super) const RESERVED_IDENTS: &[&str] = &[
   |                  ^^^^^^^^^^^^^^^
   |
   = note: `#[warn(dead_code)]` on by default

Check warning on line 49 in src/export/export.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unneeded unit return type

warning: unneeded unit return type
  --> src/export/export.rs:49:30
   |
49 | pub fn register_ty<T: Type>() -> () {
   |                              ^^^^^^ help: remove the `-> ()`
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unused_unit
note: the lint level is defined here
  --> src/lib.rs:58:9
   |
58 | #![warn(clippy::all, clippy::unwrap_used, clippy::panic, missing_docs)]
   |         ^^^^^^^^^^^
   = note: `#[warn(clippy::unused_unit)]` implied by `#[warn(clippy::all)]`