1

我想从我的测试文件中排除重复检查,但其他一切都保持不变。

这是我的.codacy.yml文件:

duplication:
  enabled: true
  exclude_paths:
    - 'test/**'
    - '**.test.js'

但是我仍然在测试文件中报告了所有重复项。

任何人都知道如何做到这一点?

编辑根据我尝试的以下建议:

engines:
  duplication:
    enabled: true
    exclude_paths:
      - 'test/**'
      - '**.test.js'

我也试过不带引号:

engines:
  duplication:
    enabled: true
    exclude_paths:
      - test/**
      - '**.test.js'

仍然没有骰子:(

4

2 回答 2

5

您似乎缺少engines应用复制配置所需的配置文件上的属性。

您应该将配置文件更改为如下所示:

engines:
  duplication:
    enabled: true
    exclude_paths:
      - 'test/**'
      - '**.test.js'
于 2018-08-14T15:44:18.733 回答
0

您的配置文件似乎错误。

检查文档:

应该是这样的:

engines:
  duplication:
    enabled: true
    exclude_paths:
      - 'test/**'
      - '**.test.js'
于 2018-08-14T16:43:29.363 回答