1
0
Fork 0

[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
This commit is contained in:
Tom Willemse 2024-02-02 11:06:31 -08:00
parent b737250fe1
commit a91df5e4ae

View file

@ -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