@@ -9,17 +9,17 @@ In order for a pull request adding a linter to be reviewed, the linter and the P
9
9
10
10
### Linter
11
11
12
- - [ ] It must not be a duplicate of another linter or a rule of a linter. (the team will help to verify that)
13
- - [ ] It must have a valid license (AGPL is not allowed) and the file must contain the required information by the license, ex: author, year, etc.
14
- - [ ] It must use Go < = 1.21
12
+ - [ ] It must not be a duplicate of another linter or a rule of a linter (the team will help to verify that).
13
+ - [ ] It must have a valid license (AGPL is not allowed), and the file must contain the required information by the license, ex: author, year, etc.
14
+ - [ ] It must use Go version > = 1.21
15
15
- [ ] The linter repository must have a CI and tests.
16
16
- [ ] It must use [ ` go/analysis ` ] ( https://golangci-lint.run/contributing/new-linters/ ) .
17
17
- [ ] It must have a valid tag, ex: ` v1.0.0 ` , ` v0.1.0 ` .
18
18
- [ ] It must not contain ` init() ` .
19
19
- [ ] It must not contain ` panic() ` .
20
- - [ ] It must not contain ` log.fatal () ` , ` os.exit () ` , or similar.
20
+ - [ ] It must not contain ` log.Fatal () ` , ` os.Exit () ` , or similar.
21
21
- [ ] It must not modify the AST.
22
- - [ ] It must not have false positives/negatives. (the team will help to verify that)
22
+ - [ ] It must not have false positives/negatives (the team will help to verify that).
23
23
- [ ] It must have tests inside golangci-lint.
24
24
25
25
### The Linter Tests Inside Golangci-lint
@@ -55,7 +55,7 @@ In order for a pull request adding a linter to be reviewed, the linter and the P
55
55
- [ ] The file ` jsonschema/golangci.next.jsonschema.json ` should be updated.
56
56
- [ ] The file ` jsonschema/golangci.jsonschema.json ` must NOT be edited.
57
57
- [ ] The linter repository should have a readme and linting.
58
- - [ ] The linter should be published as a binary. (useful to diagnose bug origins)
58
+ - [ ] The linter should be published as a binary (useful to diagnose bug origins).
59
59
- [ ] The linter repository should have a ` .gitignore ` (IDE files, binaries, OS files, etc. should not be committed)
60
60
- [ ] A tag should never be recreated.
61
61
0 commit comments