Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,18 @@ git commit --allow-empty -m 'feat: new minor release'
git commit --allow-empty -m 'fix: new patch release'
```

## Migrating rules
Rules in this linter need to be ported from the AIP standard to the AEP standard.

When making a conversion PR, the following steps should be taken:

1. Copy over new rules (and previously deleted rules) from the AIP linter.
2. Change all references of the `name` field to `path` in the documentation.
3. Remove any rules that no longer apply.
4. For each existing AIP rule, check the AEPs and see what changes (if any) are necessary.
5. Denote each rule with a Should/Must tag.
6. Fix tests.

<!-- prettier-ignore-start -->
[aep]: https://aep.dev/
[go]: https://golang.org/
Expand Down