Disable lint-emacs step from CI pipeline
Most of the errors at the moment are related to line-lengths exceeding my 80 character limit. While these are valid, the linter doesn't currently support disabling these checks, which means that my Elisp code always fails this CI step. This creates too much noise and conditions me to care less about CI failures. When the Elisp linter support this feature, I will gladly re-enable this step.
This commit is contained in:
parent
bc3b0ead7e
commit
fcd02d75aa
1 changed files with 0 additions and 17 deletions
|
@ -38,23 +38,6 @@ let
|
|||
label = ":gnu: initialize Emacs";
|
||||
depends_on = "build-briefcase";
|
||||
}
|
||||
{
|
||||
key = "lint-emacs";
|
||||
command = let
|
||||
nixosEmacs = briefcase.emacs.nixos {
|
||||
briefcasePath = "$(pwd)";
|
||||
};
|
||||
in ''
|
||||
${nixosEmacs}/bin/wpcarros-emacs \
|
||||
--quick \
|
||||
--batch \
|
||||
--load ${elispLintSrc}/elisp-lint.el \
|
||||
--funcall elisp-lint-files-batch \
|
||||
./emacs/.emacs.d/wpc/*.el
|
||||
'';
|
||||
label = ":gnu: lint Emacs";
|
||||
depends_on = "build-briefcase";
|
||||
}
|
||||
{
|
||||
key = "build-socrates";
|
||||
command = ''
|
||||
|
|
Loading…
Reference in a new issue