1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

Disable "broken intra doc links" lint

This commit is contained in:
Daniel Hofstetter 2022-08-12 14:44:23 +02:00
parent 689000576b
commit fcb7185279
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,5 @@
// TODO fix broken links
#![allow(rustdoc::broken_intra_doc_links)]
//! Macros for the uucore utilities.
//!
//! This module bundles all macros used across the uucore utilities. These
@ -28,7 +30,7 @@
//! - Terminate util execution
//! - Crash program: [`crash!`], [`crash_if_err!`]
// spell-checker:ignore sourcepath targetpath
// spell-checker:ignore sourcepath targetpath rustdoc
use std::sync::atomic::AtomicBool;

View file

@ -1,3 +1,5 @@
// TODO fix broken links
#![allow(rustdoc::broken_intra_doc_links)]
//! All utils return exit with an exit code. Usually, the following scheme is used:
//! * `0`: succeeded
//! * `1`: minor problems
@ -48,7 +50,7 @@
//! * Using [`ExitCode`] is not recommended but can be useful for converting utils to use
//! [`UResult`].
// spell-checker:ignore uioerror
// spell-checker:ignore uioerror rustdoc
use clap;
use std::{