From 98f723cb4088c3952e872cd787ba8faa5888ab75 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Wed, 30 Jan 2019 01:51:13 -0800 Subject: Add oni-flycheck --- oni-flycheck.el | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 oni-flycheck.el (limited to 'oni-flycheck.el') diff --git a/oni-flycheck.el b/oni-flycheck.el new file mode 100644 index 0000000..6a6656f --- /dev/null +++ b/oni-flycheck.el @@ -0,0 +1,59 @@ +;;; oni-flycheck.el --- Flycheck configuration -*- lexical-binding: t; -*- + +;; Copyright (C) 2019 Tom Willemse + +;; Author: Tom Willemse +;; Keywords: local +;; Version: 20190130013833 +;; Package-Requires: (flycheck flycheck-inline flycheck-cask) + +;; 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 +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with this program. If not, see . + +;;; Commentary: + +;; Configuration for flycheck. + +;;; Code: + +(require 'flycheck) +(require 'flycheck-inline) + +(defun oni-flycheck-disable-fci (&rest _) + "Disable `fci-mode'." + (turn-off-fci-mode)) + +(defun oni-flycheck-enable-fci (&rest _) + "Enable `fci-mode'." + (turn-on-fci-mode)) + +(advice-add 'flycheck-inline-display-phantom + :before 'oni-flycheck-disable-fci) +(advice-add 'flycheck-inline-clear-phantoms + :after 'oni-flycheck-enable-fci) + +(mapc (lambda (c) (delq c flycheck-checkers)) + '(python-pylint python-pyflakes)) + +(setq flycheck-highlighting-mode 'columns) + +(when (not (eql system-type 'windows-nt)) + (setq flycheck-mode-line-prefix "✓")) + +(add-hook 'flycheck-mode-hook 'flycheck-cask-setup) +(add-hook 'flycheck-mode-hook 'flycheck-inline-mode) + +;;;###autoload(with-eval-after-load 'flycheck (require 'oni-flycheck)) + +(provide 'oni-flycheck) +;;; oni-flycheck.el ends here -- cgit v1.2.3-54-g00ecf