mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-19 17:01:36 +03:00
10 lines
216 B
Bash
Executable File
10 lines
216 B
Bash
Executable File
#!/bin/bash
|
|
set -Eeuo pipefail
|
|
# https://rust-lang.github.io/rust-clippy/master/index.html
|
|
cargo clippy -- \
|
|
--deny warnings \
|
|
--deny clippy::empty_structs_with_brackets \
|
|
--deny clippy::manual_string_new
|
|
|
|
|