Welcome to mirror list, hosted at ThFree Co, Russian Federation.

findings_drawer.js « mock_data « diffs « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d7e7e957c837438e8856854fb228a367a9f52942 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
export default {
  line: 7,
  description:
    "Unused method argument - `c`. If it's necessary, use `_` or `_c` as an argument name to indicate that it won't be used.",
  severity: 'minor',
  engineName: 'testengine name',
  categories: ['testcategory 1', 'testcategory 2'],
  content: {
    body: 'Duplicated Code Duplicated code',
  },
  location: {
    path: 'workhorse/config_test.go',
    lines: { begin: 221, end: 284 },
  },
  otherLocations: [
    { path: 'testpath', href: 'http://testlink.com' },
    { path: 'testpath 1', href: 'http://testlink.com' },
    { path: 'testpath2', href: 'http://testlink.com' },
  ],
  type: 'issue',
};