问题标签 [coala]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
3 回答
113 浏览

linter - 如何在 coala 中找到所有可能的配置?

在代码分析软件(https://github.com/coala/coala)中,找到所有熊/插件列表和配置列表的最简单方法是什么?

另外,如何获得我已安装的所有可能的熊可用的所有可能配置的列表?我想了解 coala 的所有可能选项,并为我需要的特定配置启用熊。

0 投票
2 回答
153 浏览

coala - 如何在 Debian/Ubuntu 上安装 coala

我听说过这种煤棉绒/静态分析工具,我想试一试。

所以我跑了sudo apt-get install coala ,但这给了我错误的程序,那coala是某种编译器,根本不是我想要的。

什么是安装coala的正确方法

0 投票
1 回答
48 浏览

python - 通过对文件应用熊检查结果

当我尝试通过使用检查 python 文件的熊结果时

coala --bears AnnotationBear -f add.py --save

当它要求设置语言时-给出“python”,然后在检查.coafile时我没有找到AnnotationBear必须给出的任何结果,如何检查结果?

0 投票
0 回答
544 浏览

python-3.x - 无法使用 pip install 安装从存储库克隆的 coala-bears

从 * git@github.com:coala/coala.git * git@github.com:coala/coala-bears.git 克隆后,我在本地创建了两个存储库,一个是 coala 和 coala-bears

cd 进入 windows 7 64 位上的 coala-bears 文件夹发出“命令 pip install ”。有一段错误,感谢任何帮助,尝试从非官方 repos 为 Win 64 位 amd arch 安装 libxml 二进制文件

以下是安装日志错误:

0 投票
3 回答
736 浏览

python-3.x - 在 virtualenv 中从 requirements.txt 安装依赖项时出错

我创建了一个名为 bug 的 virtualenv,并尝试使用以下命令从 requirements.txt 文件中安装模块 -

pip3 install -r requirements.txt

使用上述命令安装模块时,出现以下错误。我正在使用 Python3 并尝试为 coala-quickstart 安装依赖项。以下是终端在尝试从 requirements.txt 安装模块时给出的消息。

0 投票
1 回答
41 浏览

python - 在 python 中为 Visual Basic 编写“长线测试”(Coala 的“LineLengthBear”)

这是我的代码,

所以基本上,它会忽略max_line_length=4并选择已经为 Visual Basic 文件定义的 65535 限制。我面临的问题是 LineLengthBear 给我 18 作为线的长度invalid_VB_test并使测试有效,因此测试失败。有没有办法编写一个无效的测试,即超过 65535 个字符的行,而不需要写这么长的一行?