Skip to content

Commit

Permalink
Update Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnTitor committed Feb 17, 2020
1 parent 75b98fb commit 3b43123
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ dependencies = [
"itertools 0.8.0",
"lazy_static 1.4.0",
"matches",
"pulldown-cmark 0.6.1",
"pulldown-cmark 0.7.0",
"quine-mc_cluskey",
"regex-syntax",
"semver",
Expand Down
2 changes: 1 addition & 1 deletion src/tools/clippy
Submodule clippy updated 55 files
+13 −55 .github/deploy.sh
+29 −0 .github/driver.sh
+99 −0 .github/workflows/clippy.yml
+328 −0 .github/workflows/clippy_bors.yml
+74 −0 .github/workflows/clippy_dev.yml
+40 −0 .github/workflows/deploy.yml
+55 −0 .github/workflows/remark.yml
+1 −1 .gitignore
+12 −0 .remarkrc
+0 −12 .remarkrc.json
+1 −13 .travis.yml
+54 −51 CHANGELOG.md
+45 −15 CODE_OF_CONDUCT.md
+39 −25 CONTRIBUTING.md
+1 −0 Cargo.toml
+12 −5 README.md
+29 −21 clippy_dev/src/lib.rs
+8 −6 clippy_dev/src/main.rs
+5 −3 clippy_dummy/PUBLISH.md
+1 −1 clippy_lints/Cargo.toml
+1 −0 clippy_lints/src/escape.rs
+57 −68 clippy_lints/src/excessive_precision.rs
+2 −2 clippy_lints/src/functions.rs
+1 −1 clippy_lints/src/len_zero.rs
+5 −3 clippy_lints/src/lib.rs
+1 −1 clippy_lints/src/lifetimes.rs
+1 −1 clippy_lints/src/literal_representation.rs
+1 −0 clippy_lints/src/loops.rs
+44 −9 clippy_lints/src/methods/mod.rs
+5 −1 clippy_lints/src/misc_early.rs
+5 −4 clippy_lints/src/needless_pass_by_value.rs
+1 −1 clippy_lints/src/ptr.rs
+1 −1 clippy_lints/src/returns.rs
+2 −1 clippy_lints/src/single_component_path_imports.rs
+2 −2 clippy_lints/src/types.rs
+1 −1 clippy_lints/src/use_self.rs
+2 −2 clippy_lints/src/utils/hir_utils.rs
+2 −1 clippy_lints/src/utils/mod.rs
+1 −0 clippy_lints/src/utils/usage.rs
+12 −13 doc/adding_lints.md
+54 −21 etc/relicense/RELICENSE_DOCUMENTATION.md
+29 −10 src/driver.rs
+2 −2 src/lintlist/mod.rs
+1 −1 tests/fmt.rs
+4 −0 tests/integration.rs
+27 −5 tests/ui/excessive_precision.fixed
+22 −0 tests/ui/excessive_precision.rs
+72 −6 tests/ui/excessive_precision.stderr
+1 −0 tests/ui/literals.rs
+3 −3 tests/ui/literals.stderr
+9 −0 tests/ui/single_component_path_imports.fixed
+9 −0 tests/ui/single_component_path_imports.rs
+3 −1 util/export.py
+7 −3 util/gh-pages/versions.html
+42 −0 util/versions.py

0 comments on commit 3b43123

Please sign in to comment.