我有几个文件中有python错误(未解析的引用,如果这很重要),所以我运行了Inspect代码以获取所有错误的列表。不幸的是,看起来他们没有出现:
错误确实存在,因为当我打开一个包含错误的python文件时,它们会显示出来:
我错过了一些隐藏的选项,还是这个错误?
答案 0 :(得分:0)
理论上,您的默认设置code inspection
和current file analysis
应该使用相同的inspection profile。
对于current file analysis
,您可以点击ctrl+alt+Shift+H
并点击Configure inspections
链接来查看个人资料。
对于code inspection
,您从Inspect Code
菜单元素中选择Code
后设置了个人资料。
我的观察
更改current file analysis
的检查规则后,我发现Severity没有任何影响。我试图重启IDE,但没有任何帮助。 看起来像个bug。
但是,如果我使用复选框打开/关闭规则,则会在current file analysis
或code inspection
上进行更改(它们在相同的检查配置文件中运行)。没关系,所以问题只在于严重性。
好消息是更改检验规则适用于code inspection
。您可以尝试将code inspection
设为与current file analysis
类似(但反之亦然,这是一个错误)。
请注意,默认情况下,未解析的引用只是警告,因此code inspection
效果很好。
PS我的IDE版本是2016.3.2。