当使用Sublime Text 2的JSHint插件时,我想关闭全局特定警告.例如,“laxcomma”.
我尝试在JSHint的Sublime Packages文件夹中编辑.jshintrc文件,但这没有起作用.
{ "laxcomma": true }
添加具有相同选项的项目特定的.jshintrc文件可以解决该特定项目的问题,但我希望这些选项是全局的.
有什么建议么?
解决方法
从JSHint文档页面:
http://www.jshint.com/docs/
http://www.jshint.com/docs/
JSHint will look for this file in the current working directory and,if not found,will move one level up the directory tree all the way up to the filesystem root.
所以在技术上你可以把.jshintrc文件放在你的文件系统的根级别(/.jshintrc),每个新的项目都会默认为这些选项.个别项目可以根据需要覆盖它们.