mirror of
https://github.com/vale981/melpazoid
synced 2025-03-05 17:31:38 -05:00
Fix switched not/null in melpazoid-check-misc
This commit is contained in:
parent
6c2792c0c7
commit
b3af1685bf
1 changed files with 2 additions and 2 deletions
|
@ -194,8 +194,8 @@ a Docker container, e.g. kellyk/emacs does not include the .el files."
|
|||
(melpazoid-misc "(user-error (format" "No `format` required; user-errors are already f-strings")
|
||||
(melpazoid-misc "(message (format" "No `format` required; messages are already f-strings")
|
||||
(melpazoid-misc "^ ;[^;]" "Single-line comments should (usually) begin with `;;`")
|
||||
(melpazoid-misc "(unless (null " "Consider `when ...` instead of `unless (not ...)`")
|
||||
(melpazoid-misc "(unless (not " "Consider `when ...` instead of `unless (null ...)`")
|
||||
(melpazoid-misc "(unless (not " "Consider `when ...` instead of `unless (not ...)`")
|
||||
(melpazoid-misc "(unless (null " "Consider `when ...` instead of `unless (null ...)`")
|
||||
(melpazoid-misc "(when (not " "Consider `unless ...` instead of `when (not ...)`")
|
||||
(melpazoid-misc "(when (null " "Consider `unless ...` instead of `when (null ...)`")
|
||||
(melpazoid-misc "http://" "Prefer `https` over `http` (if possible)" nil t)
|
||||
|
|
Loading…
Add table
Reference in a new issue