forked from mirrors/jj
refactor(jj-lib): remove allow(unknown_lints)
Summary: Unneeded with the MSRV bump. The other one will have to wait until Rust 1.72.0 Signed-off-by: Austin Seipp <aseipp@pobox.com> Change-Id: Ifb3d862aedd3f2aeb05a86ce76978d4f
This commit is contained in:
parent
017ce851b4
commit
9d05e9902a
1 changed files with 3 additions and 3 deletions
|
@ -12,10 +12,10 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// TODO: Remove after https://github.com/frondeus/test-case/issues/122 is resolved
|
||||
#![allow(unknown_lints)] // Needed for clippy <1.70
|
||||
// this was supposed to be fixed in 1.71.0, but barely missed the cut.
|
||||
// can be released after we bump MSRV to 1.72.0, see:
|
||||
// https://github.com/frondeus/test-case/issues/126#issuecomment-1635916592
|
||||
#![allow(clippy::items_after_test_module)]
|
||||
#![deny(unknown_lints)]
|
||||
|
||||
use std::path::Path;
|
||||
|
||||
|
|
Loading…
Reference in a new issue