13 Star 23 Fork 0

Gitee 极速下载/checkstyle

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/checkstyle/checkstyle
克隆/下载
.shellcheckrc 1.96 KB
一键复制 编辑 原始数据 按行查看 历史
shubh220922 提交于 2023-03-21 05:35 +08:00 . Issue #11637: Resolve shellcheck SC2061
# until https://github.com/checkstyle/checkstyle/issues/11637
disable=SC2207 # (warning): Prefer mapfile or read -a to split command output.
# SC2002 permanently disabled, rightward flow of logic (via pipe) is simple to understand
disable=SC2002 # (style): Useless cat. Consider 'cmd < file | ..' or 'cmd file | ..' instead.
disable=SC2035 # (info): Use ./glob or -- glob so names with dashes won't become options.
disable=SC2185 # (info): Some finds don't have a default path. Specify '.' explicitly.
disable=SC2155 # (warning): Declare and assign separately to avoid masking return values.
disable=SC2034 # (warning): RUN_JOB appears unused. Verify use (or export if used externally).
disable=SC2216 # (warning): Piping to 'true', a command that doesn't read stdin.
disable=SC2013 # (info): To read lines rather than words, pipe/redirect to a 'while read' loop.
disable=SC2206 # (warning): Quote to prevent word splitting/globbing.
disable=SC2143 # (style): Use grep -q instead of comparing output with [ -n .. ].
disable=SC2004 # (style): $/${} is unnecessary on arithmetic variables.
disable=SC2087 # (warning): Quote 'EOF' to make here document expansions happen on the server-side.
disable=SC2102 # (info): Ranges can only match single chars (mentioned due to duplicates).
disable=SC2242 # (error): Can only exit with status 0-255.
disable=SC2115 # (warning): Use "${var:?}" to ensure this never expands to /* .
disable=SC2128 # (warning): Expanding an array without an index only gives the first element.
disable=SC2063 # (warning): Grep uses regex, but this looks like a glob.
# SC2126 permanently disabled, 'grep | wc -l' is easier to read than 'grep -c || true'
disable=SC2126 # (style): Consider using grep -c instead of grep|wc -l.
disable=SC2015 # (info): Note that A && B || C is not if-then-else. C may run when A is true.
disable=SC2230 # which is non-standard. Use builtin 'command -v' instead.
disable=SC2153 # Possible misspelling: LINKED_ISSUES may not be assigned, but LINKED_ISSUE is.
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/mirrors/checkstyle.git
git@gitee.com:mirrors/checkstyle.git
mirrors
checkstyle
checkstyle
master

搜索帮助