diff options
author | Franck Cuny <franck@fcuny.net> | 2022-03-22 06:51:57 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-03-22 06:51:57 -0700 |
commit | 2137435040829721416eda6101bf5608ac8291fa (patch) | |
tree | fc62d0d13f498162cd0fb75bcaa29d65e3d26969 /emacs | |
parent | eshell: make flymake happy (diff) | |
download | emacs.d-2137435040829721416eda6101bf5608ac8291fa.tar.gz |
flycheck: replaced by flymake
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/custom/fcuny-flycheck.el | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/emacs/custom/fcuny-flycheck.el b/emacs/custom/fcuny-flycheck.el deleted file mode 100644 index 6f8ff65..0000000 --- a/emacs/custom/fcuny-flycheck.el +++ /dev/null @@ -1,14 +0,0 @@ -(eval-when-compile - (require 'use-package)) - -(use-package flycheck - :ensure t - :hook (prog-mode . flycheck-mode ) - :custom - (flycheck-idle-change-delay 2) - (flycheck-emacs-lisp-load-path 'inherit) - (flycheck-highlighting-mode 'lines) - (flycheck-check-syntax-automatically '(mode-enabled save)) - (flycheck-disabled-checkers '(emacs-lisp-checkdoc))) - -(provide 'fcuny-flycheck) |