如何在SonarLint for IntelliJ IDEA中从动态分析中排除JS文件?

qlvxas9a  于 2023-06-21  发布在  IntelliJ IDEA
关注(0)|答案(3)|浏览(242)

我不知道,如何排除特定的源文件被SonarLint分析在飞行。
FAQ建议配置属性sonar.exclusions。但SonarLint在IntelliJ中打开排除的文件时会继续分析它们。
Exclude JS files from SonarLint涵盖了Eclipse的相同问题,在看起来可能的地方。
我正在使用IntelliJ IDEA 2016.1.1和SonarLint for IntelliJ IDEA 2.0在Windows上使用分析属性sonar.exclusions = **\components\**以排除一些外部JavaScript库。
此外,**或其他模式的属性值不会导致SonarLint排除任何文件。
对于一些大型库文件,我不希望它们被分析,因为它会降低性能,警告会使wohle编辑器变得混乱。

iqxoj9l9

iqxoj9l91#

这对我来说很有效(使用IntelliJ版本2017.2)

nkkqxpd9

nkkqxpd92#

当前排除文件的方法(2020年2月):
1.设置
1.其他设置

  1. Sonarlint常规设置
    1.文件排除
    1.按“+”

**/*.js

iecba09b

iecba09b3#

These steps are for 2022 Intellij Ultimate version

Step 1 : Click on Sonarlint tab 
Step 2 : On the left hand side you should search for for settings icons,Click on that icon
Step 3 : You should see a Project settings dialog
Step 4 : Click on + 
Here you can
exclude a file: for example .html
exclude a directory: Example: Browser directory from your machine to 
exclude using Glob pattern : **/*.js  - meaning exclude all js file from sonar analysis

相关问题