├── .gitignore
├── .idea
├── encodings.xml
├── modules.xml
└── vcs.xml
├── CommitMessageChecker.iml
├── README.md
├── resources
└── META-INF
│ ├── plugin.xml
│ └── pluginIcon.svg
└── src
└── org
└── turbanov
└── commits
├── CommitMessageCheckinHandlerFactory.java
└── IssueReferenceChecker.java
/.gitignore:
--------------------------------------------------------------------------------
1 | *.jar
2 | .idea/workspace.xml
3 | out/
4 |
--------------------------------------------------------------------------------
/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/CommitMessageChecker.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Commit message checker
2 |
3 | Plugins for Jetbrains IDEs.
4 | Checks that commit message contains reference to the same issue as branch name.
5 |
6 | 
7 |
8 | ## Setup
9 | Make sure you have configured VCS issue regexp
10 | `File | Settings | Version Control | Issue Navigation`
11 |
12 | [See](https://www.jetbrains.com/help/idea/settings-version-control-issue-navigation.html) for details
13 |
14 | 
15 |
--------------------------------------------------------------------------------
/resources/META-INF/plugin.xml:
--------------------------------------------------------------------------------
1 |
2 | org.turbanov.commits.message.checker
3 | Commit Message Checker
4 | 1.2
5 | Turbanov Andrey
6 |
7 |
11 |
12 |
14 | 1.2
15 |
16 | - Fix CSS styles in warning message
17 |
18 | 1.1
19 |
20 | - Show branch name in warning message
21 |
22 |