lang/javascript: leave ecma strict warnings to flycheck

This commit is contained in:
Henrik Lissner 2018-03-06 18:38:35 -05:00
parent dc8fd12448
commit 726dea9880
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -6,8 +6,10 @@
:config
(setq js2-skip-preprocessor-directives t
js2-highlight-external-variables nil
js-chain-indent t
;; let flycheck handle this
js2-mode-show-parse-errors nil
js-chain-indent t)
js2-mode-show-strict-warnings nil)
(add-hook! 'js2-mode-hook #'(flycheck-mode rainbow-delimiters-mode))