js2 模式中的 Linting 错误似乎*不是*来自 flycheck?
Linting errors in js2-mode that seem to *not* be coming from flycheck?
我正在使用带有 Spacemacs 配置的 emacs(javascript 层已启用,语法检查 未 已启用)。在 js2 模式下,我发现错误的 linting 正在发生(即我的项目根目录下有一个 .eslintrc
文件,它的配置被忽略了 - 来自 cli 的 运行ning eslint 给我零错误但错误出现在缓冲区中)。
此时我有点不知所措,什么 甚至可能会产生这些 linting 错误。据我所知,它们必须来自 flycheck(我在 javascript 层代码中注意到 this line,尽管文档中没有提到 flycheck,我也无法找到它的调用位置)。但是,我可以发誓 flycheck 没有打开。我很确定这一点,因为
- 我已经尝试通过交互式迷你缓冲区手动关闭
flycheck-mode
- 我 运行
describe-mode
并确保没有提及 flycheck、linting 或语法检查
flycheck-verify-setup
报告 Flycheck Mode is disabled.
- 我添加了一个永远不会被触发的钩子
(add-hook 'flycheck-mode-hook (lambda () (message "entered flycheck mode")))
那么我缓冲区中的这些错误可能来自哪里?
这是.spacemacs
摘录
dotspacemacs-configuration-layers
'(
;; ----------------------------------------------------------------
;; Example of useful layers you may want to use right away.
;; Uncomment some layer names and press <SPC f e R> (Vim style) or
;; <M-m f e R> (Emacs style) to install them.
;; ----------------------------------------------------------------
javascript
html
helm
auto-completion
git
better-defaults
colors
;; emacs-lisp
markdown
clojure
;; org
;; (shell :variables shell-default-position 'bottom)
;; spell-checking
;; react
;; syntax-checking
version-control
)
;; List of additional packages that will be installed without being
;; wrapped in a layer. If you need some configuration for these
;; packages, then consider creating a layer. You can also put the
;; configuration in `dotspacemacs/user-config'.
dotspacemacs-additional-packages '(
paredit
editorconfig
writeroom-mode
tide
csharp-mode
elisp-format
;; powershell
omnisharp
gist
parinfer
ag )
这些错误直接来自 js2-mode
。
您可以通过在您的配置中设置这两个来关闭它们:
(setq js2-mode-show-parse-errors nil
js2-mode-show-strict-warnings nil)
我正在使用带有 Spacemacs 配置的 emacs(javascript 层已启用,语法检查 未 已启用)。在 js2 模式下,我发现错误的 linting 正在发生(即我的项目根目录下有一个 .eslintrc
文件,它的配置被忽略了 - 来自 cli 的 运行ning eslint 给我零错误但错误出现在缓冲区中)。
此时我有点不知所措,什么 甚至可能会产生这些 linting 错误。据我所知,它们必须来自 flycheck(我在 javascript 层代码中注意到 this line,尽管文档中没有提到 flycheck,我也无法找到它的调用位置)。但是,我可以发誓 flycheck 没有打开。我很确定这一点,因为
- 我已经尝试通过交互式迷你缓冲区手动关闭
flycheck-mode
- 我 运行
describe-mode
并确保没有提及 flycheck、linting 或语法检查 flycheck-verify-setup
报告Flycheck Mode is disabled.
- 我添加了一个永远不会被触发的钩子
(add-hook 'flycheck-mode-hook (lambda () (message "entered flycheck mode")))
那么我缓冲区中的这些错误可能来自哪里?
这是.spacemacs
摘录
dotspacemacs-configuration-layers
'(
;; ----------------------------------------------------------------
;; Example of useful layers you may want to use right away.
;; Uncomment some layer names and press <SPC f e R> (Vim style) or
;; <M-m f e R> (Emacs style) to install them.
;; ----------------------------------------------------------------
javascript
html
helm
auto-completion
git
better-defaults
colors
;; emacs-lisp
markdown
clojure
;; org
;; (shell :variables shell-default-position 'bottom)
;; spell-checking
;; react
;; syntax-checking
version-control
)
;; List of additional packages that will be installed without being
;; wrapped in a layer. If you need some configuration for these
;; packages, then consider creating a layer. You can also put the
;; configuration in `dotspacemacs/user-config'.
dotspacemacs-additional-packages '(
paredit
editorconfig
writeroom-mode
tide
csharp-mode
elisp-format
;; powershell
omnisharp
gist
parinfer
ag )
这些错误直接来自 js2-mode
。
您可以通过在您的配置中设置这两个来关闭它们:
(setq js2-mode-show-parse-errors nil
js2-mode-show-strict-warnings nil)