mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
- Split large modules into smaller parts (e.g. siren-text-manipulation) - Organize modules into high level groups: - completion - core - editor - languages - linting - misc - navigation - projects - spelling - text-editing - version-control - windows - workspaces
20 lines
519 B
EmacsLisp
20 lines
519 B
EmacsLisp
;;; siren-flycheck.el --- jimeh's Emacs Siren: flycheck configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for flycheck.
|
|
|
|
;;; Code:
|
|
|
|
(use-package flycheck
|
|
:hook (prog-mode . flycheck-mode)
|
|
:config
|
|
(setq flycheck-completion-system 'ido
|
|
flycheck-idle-change-delay 1.0
|
|
flycheck-indication-mode 'right-fringe
|
|
flycheck-ruby-rubocop-executable "rubocop-bundle-safe"
|
|
flycheck-javascript-standard-executable "semistandard"))
|
|
|
|
(provide 'siren-flycheck)
|
|
;;; siren-flycheck.el ends here
|