diff options
author | Matthew Kosarek <matthew.kosarek@vention.cc> | 2023-01-04 14:13:50 -0500 |
---|---|---|
committer | Matthew Kosarek <matthew.kosarek@vention.cc> | 2023-01-04 14:13:50 -0500 |
commit | 12971658a2cd31f27a77814970d4a61b0ba90944 (patch) | |
tree | 34afcd5eaa84e9cb7cb6698906d0402e3eeba6ba /lisp | |
parent | 61b9f1a08dd19679c5768c6ba4b71c51b10f29c5 (diff) |
Json no longer needs a hook
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/json.el | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lisp/json.el b/lisp/json.el index 786aa4d..4536315 100644 --- a/lisp/json.el +++ b/lisp/json.el @@ -2,13 +2,5 @@ ;;; Code: (add-to-list 'auto-mode-alist '(".eslintrc'" . json-mode)) -(defun my-json-mode-hook () - "Turn off eglot in JSON mode." - (flymake-mode 0) - (flycheck-mode 0) - ) - -(add-hook 'json-mode-hook 'my-json-mode-hook) - (provide 'json) ;;; json.el ends here |