Cameron Steffen
e2ce4f9462
Combine internal features in clippy_lints
2022-01-09 18:35:12 -06:00
Cameron Steffen
16d848891d
Combine internal features in clippy_utils
2022-01-09 18:24:51 -06:00
flip1995
eb47398773
Test clippy_utils in CI
...
This makes sure that the tests in clippy_utils are run in CI.
When looking into this I discovered that two tests were failing and
multiple doc tests were failing. This fixes those tests and enables a
few more doc tests.
2021-12-20 19:56:06 +01:00
flip1995
11002c7f77
Use new template forms for issue templates
...
GitHub has a new way to define issue templates. This gives an even more
consistent formatting of our issues.
2021-11-30 17:19:48 +00:00
Alex Macleod
608c9e8584
Run clippy_dev workflow on current rust-toolchain
2021-11-12 21:22:09 +00:00
flip1995
96126e7ce9
Fix deploy script
...
I broke this script in #7502 , so that the stable symlink isn't generated
anymore. This reverts this change.
2021-10-21 18:00:57 +02:00
xFrednet
d23994d70b
Updating issue templates to avoid @rustbot triggers
2021-09-14 15:49:43 +02:00
xFrednet
9ebd012c78
Updating issue templates again for rustbot
2021-09-03 15:58:01 +02:00
xFrednet
10909ae390
Updated issue templates(formatting and rustbot label reference)
2021-08-25 16:39:09 +02:00
Cameron Steffen
68b4a43e23
Remove stderr limit
2021-08-23 11:02:03 -05:00
r00ster
43ee3fe56c
Clean up examples in new lint suggestion template
2021-08-07 08:02:25 +02:00
Takayuki Nakata
f4ea50b4f7
Use node v12.x in CI
2021-08-04 10:27:05 +09:00
xFrednet
51f94ad922
Added the metadata-collector-lint
feature to the CI
2021-08-02 17:56:15 +02:00
flip1995
6c5d199d57
Update deploy CI
...
This updates all the deploy scripts and the deploy workflow.
The deploy workflow now runs the metadata collector to collect the lint
documentation. It also changes the files that are checked out in the
deploy workflow from master and adds an explanation why we have to do
this.
2021-07-28 14:16:31 +02:00
bors
95c2ab75db
Auto merge of #7405 - jyn514:fix-stable, r=camsteffen
...
Stabilize `cargo clippy --fix`
This has been unstable since it was first introduced in
https://github.com/rust-lang/rust-clippy/pull/5363 . In that time, I have
been using it successfully in nightly without issues. I don't think
there are any blocking issues now that RUSTC_WORKSPACE_WRAPPER is
stabilized, so this can be stabilized.
changelog: Stabilize `cargo clippy --fix`
2021-06-29 13:03:45 +00:00
Joshua Nelson
aa40487a84
Stabilize cargo clippy --fix
...
This has been unstable since it was first introduced in
https://github.com/rust-lang/rust-clippy/pull/5363 . In that time, I have
been using it successfully in nightly without issues. I don't think
there are any blocking issues now that RUSTC_WORKSPACE_WRAPPER is
stabilized, so this can be stabilized.
2021-06-28 21:46:57 -04:00
Cameron Steffen
5b5f0ea606
Add remark-gfm to workflow job
2021-06-25 10:30:37 -05:00
flip1995
cd57c2307c
Revert "CI: update rustup before installing the toolchain on windows"
...
This reverts commit 716d03f86b
.
This is no longer necessary, since rustup 1.24.2 is now the default
version on the windows runner.
2021-06-03 08:55:15 +02:00
flip1995
716d03f86b
CI: update rustup before installing the toolchain on windows
2021-05-18 10:03:36 +02:00
Takayuki Nakata
2d65b2d543
Update pull request template
2021-04-19 23:02:41 +09:00
Cameron Steffen
0d144298ee
Improve changelog check error handling
2021-04-13 14:53:12 -05:00
flip1995
26265bb9bc
ci: Sync clippy and clippy_bors workflows
...
Those workflows should always test exactly the same things
2021-03-05 10:27:30 +01:00
Cameron Steffen
1368cb34d1
Revert "Test workspace at once"
...
This reverts commit e355652fec
.
2021-02-26 12:10:24 -06:00
Cameron Steffen
e355652fec
Test workspace at once
2021-02-16 10:50:43 -06:00
xFrednet
8c5d301e1b
Updated labels in template files
...
For context: https://rust-lang.zulipchat.com/#narrow/stream/257328-clippy/topic/Label.20cleanup/near/224083870
2021-02-13 16:45:34 +01:00
bors
015496579d
Auto merge of #6495 - matthiaskrgr:FN_FP_issue_templates, r=flip1995
...
ISSUE_TEMPLATE: add templates for false negative and false positive tickets.
These will add the correct labels automatically so we don't have to do that ourselves :)
changelog: none
2020-12-27 12:53:04 +00:00
Matthias Krüger
2218dd6554
ci: run cargo clippy --fix -Zunstable-options in the correct directory.
2020-12-24 13:57:39 +01:00
Matthias Krüger
3687de2159
ISSUE_TEMPLATE: add templates for false negative and false positive tickets.
2020-12-23 12:28:16 +01:00
Matthias Krüger
d6a7ebcdd6
ci: test cargo clippy --fix -Zunstable-options
2020-12-22 02:01:16 +01:00
flip1995
836325e9d9
Fix integration test runner
2020-12-10 12:44:27 +01:00
flip1995
26dcbf5523
Stop caching on CI
...
The only thing we now cache is cargo-cache, which we only use for cache.
That's a catch-22 if I ever seen one. And for Clippy itself we always
want to do a clean build and not cache anything.
2020-12-10 10:53:20 +01:00
flip1995
41cab83fdb
Fix toolchain installation in workflows
2020-12-10 10:53:19 +01:00
flip1995
20d84fdd98
Enable internal lints for every test in CI
2020-12-10 09:57:30 +01:00
Eduardo Broto
77a32ebe1e
Use new cache key
2020-12-10 09:57:30 +01:00
Eduardo Broto
613333acd5
Pin Clippy to a nightly
2020-12-10 09:57:29 +01:00
Matthias Krüger
252083f7e0
address review comments and rebase
...
ci: always build with internal lints
group up internal lints in lib.rs
dogfood: we already pass --all-features, no need to enable internal-lints again
2020-11-29 23:43:23 +01:00
Matthias Krüger
b25a6df775
ci: partly clean build artifacts to work around "Found multiple rlibs for crate clippy_lints
" compiletest error
2020-11-29 21:07:47 +01:00
Matthias Krüger
2838b04487
add internal-lints feature to enable clippys internal lints (off by default)
2020-11-29 21:07:43 +01:00
flip1995
7c612c1c50
Force contributors/reviewers to set _some_ changelog entry
2020-11-08 16:18:25 +01:00
Eduardo Broto
9d73371663
Merge remote-tracking branch 'upstream/master' into rustup
2020-10-31 09:33:40 +01:00
Eduardo Broto
50419118b4
Merge commit '645ef505da378b6f810b1567806d1bcc2856395f' into clippyup
2020-10-28 23:36:07 +01:00
Matthias Krüger
0d6eed1b1f
use diff -u in driver.sh test
...
this changs the add/delete indication from
>
>
<
to
+
+
-
(same as git diff)
2020-10-28 23:19:04 +01:00
Takayuki Nakata
c42a22d2dc
Use double_neg.stderr
2020-10-29 01:02:09 +09:00
Nathan Whitaker
a1bb10e9b8
Remove lint from clippy
2020-10-26 18:19:48 -04:00
Eduardo Broto
cdb555f4fc
Merge commit 'bf1c6f9871f430e284b17aa44059e0d0395e28a6' into clippyup
2020-10-23 22:16:59 +02:00
flip1995
282c59820b
Merge commit '3d0b0e66afdfaa519d8855b338b35b4605775945' into clippyup
2020-08-28 18:43:25 +02:00
flip1995
d164ab65f7
Merge commit 'da5a6fb1b65ec6581a67e942a3850f6bc15a552c' into clippyup
2020-07-26 21:07:07 +02:00
flip1995
6f25adbd5a
Merge commit '2ca58e7dda4a9eb142599638c59dc04d15961175' into clippyup
2020-07-14 14:59:59 +02:00
flip1995
80bcbf521c
Merge commit 'c2c07fa9d095931eb5684a42942a7b573a0c5238' into clippyup
2020-06-23 17:05:22 +02:00
Lzu Tao
8db24840f7
Merge commit 'ff0993c5e9162ddaea78e83d0f0161e68bd4ea73' into clippy
2020-06-09 14:36:01 +00:00