Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个项目,该项目有一个.eslintrc文件签入到项目根目录的源代码管理中。
.eslintrc
问题是它具有自定义依赖项,当我使用工具运行我的 linting(与 Vim 同步)时,它失败了。依赖项是自定义的,我希望跳过在我的编辑器中运行它们。
我想使用另一个 .eslintrc 文件,而不是项目根目录中的文件。
我怎样才能忽略<projectroot>/.eslintrc而不是使用/custom/path/.eslintrc?
<projectroot>/.eslintrc
/custom/path/.eslintrc
浏览ESLint 文档告诉我们,您希望传递--no-eslintrc选项以使其忽略.eslintrc项目根目录中的 ,并--config /custom/path/.eslintrc改为使用该文件。
--no-eslintrc
--config /custom/path/.eslintrc
Syntastic README说你可以像这样配置给 eslint 的参数:
let g:syntastic_javascript_eslint_args = "--no-eslintrc --config /custom/path/.eslintrc"