summaryrefslogtreecommitdiff
path: root/emacs/custom/fcuny-flycheck.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/custom/fcuny-flycheck.el')
-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)