diff options
author | William Carroll <wpcarro@gmail.com> | 2021-01-22T11·22+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2021-01-22T11·22+0000 |
commit | fcd02d75aa37d306f2dbec41ac76f5c421052606 (patch) | |
tree | a0bc4ddc8182e11beb9cce7f4c2f70045e4aa3e2 /ci | |
parent | bc3b0ead7e8f331c2acf2f999e9218b1f0ae1bc7 (diff) |
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.
Diffstat (limited to 'ci')
-rw-r--r-- | ci/pipelines/post-receive.nix | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/ci/pipelines/post-receive.nix b/ci/pipelines/post-receive.nix index b7a96c820652..456d546af7da 100644 --- a/ci/pipelines/post-receive.nix +++ b/ci/pipelines/post-receive.nix @@ -39,23 +39,6 @@ let 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 = '' nix-build '<nixpkgs/nixos>' \ |