summary refs log tree commit diff
path: root/emacs/custom/fcuny-flycheck.el
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-03-22 06:51:57 -0700
committerFranck Cuny <franck@fcuny.net>2022-03-22 06:51:57 -0700
commit2137435040829721416eda6101bf5608ac8291fa (patch)
treefc62d0d13f498162cd0fb75bcaa29d65e3d26969 /emacs/custom/fcuny-flycheck.el
parenteshell: make flymake happy (diff)
downloademacs.d-2137435040829721416eda6101bf5608ac8291fa.tar.gz
flycheck: replaced by flymake
Diffstat (limited to '')
-rw-r--r--emacs/custom/fcuny-flycheck.el14
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)