SublimeLinter-contrib-groovyc
Groovyc 检查器
详细信息
安装次数
- 总计 2K
- Win 828
- Mac 929
- Linux 443
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
读取文件
SublimeLinter-contrib-groovyc
这个用于 SublimeLinter 的检查器插件为 groovyc 提供了接口。它将用于具有 “.groovy” 语法的文件。
安装
要使用此插件,必须安装 SublimeLinter。
请使用 Package Control 安装检查器插件。
在安装此插件之前,必须确保您的系统已安装 groovyc
。
为了使 SublimeLinter 能够执行 groovyc
,必须确保其路径可由 SublimeLinter 使用。文档涵盖了 查找检查器可执行程序的故障排除。
GROOVY_HOME
环境变量必须设置为主要的 groovy 文件夹(在该文件夹中可以找到如bin
、lib
和conf
等目录)
设置
- SublimeLinter 设置: http://sublimelinter.readthedocs.org/en/latest/settings.html
- 检查器设置: http://sublimelinter.readthedocs.org/en/latest/linter_settings.html
SublimeLinter-groovyc 的附加设置
设置 | 描述 |
---|---|
classpath | 添加到类路径的目录(依赖项),项目文件夹会自动添加 |
sourcepath | 添加为源路径的目录 |
SublimeLinter 设置示例
全局设置
{
"linters":
{
"groovy":{
"env": {
"GROOVY_HOME": "C:\\groovy\\apache-groovy-binary-2.6.0-alpha-3\\groovy-2.6.0-alpha-3"
}
}
},
"paths":
{
"linux":
[
],
"osx":
[
],
"windows":
[
"C:\\groovy\\apache-groovy-binary-2.6.0-alpha-3\\groovy-2.6.0-alpha-3\\bin"
]
}
}
项目设置
"SublimeLinter": {
"linters": {
"groovy": {
"classpath": "C:\\code\\project1\\src"
}
}
}