aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2024-02-02 11:06:31 -0800
committerGravatar Tom Willemse2024-02-02 11:06:31 -0800
commita91df5e4ae9acd4a7796cdf0c6dbd1912cd79646 (patch)
tree3244bb0812b3920240d075b1edb3f0ce5968d32b
parentb737250fe158650baa81fae8e8c5210f34582267 (diff)
downloademacs-config-a91df5e4ae9acd4a7796cdf0c6dbd1912cd79646.tar.gz
emacs-config-a91df5e4ae9acd4a7796cdf0c6dbd1912cd79646.zip
[oni-yaml] Remove unnecessary dependency
Flycheck yamllint has been made part of flycheck and isn't necessary to be installed anymore. https://github.com/flycheck/flycheck/pull/1640
-rw-r--r--oni-yaml.el7
1 files changed, 2 insertions, 5 deletions
diff --git a/oni-yaml.el b/oni-yaml.el
index 2726b50..734386b 100644
--- a/oni-yaml.el
+++ b/oni-yaml.el
@@ -4,8 +4,8 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 2022.0718.085034
-;; Package-Requires: (yaml-mode oni-flycheck oni-highlight-indent-guides flycheck-yamllint indent-tools yaml-imenu yaml-pro)
+;; Version: 2024.0202.110614
+;; Package-Requires: (yaml-mode oni-flycheck oni-highlight-indent-guides indent-tools yaml-imenu yaml-pro)
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
@@ -28,7 +28,6 @@
(require 'indent-tools)
(require 'yaml-imenu)
-(require 'flycheck-yamllint)
(defun oni-yaml--auto-fill-mode ()
"Enable ‘auto-fill-mode’ only for comments."
@@ -45,7 +44,5 @@
(add-hook 'yaml-mode-hook 'yaml-imenu-enable)
(add-hook 'yaml-mode-hook 'yaml-pro-mode)
-(flycheck-yamllint-setup)
-
(provide 'oni-yaml)
;;; oni-yaml.el ends here