├── .editorconfig ├── .gitignore ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── dictionaries │ └── Edoardo.xml └── inspectionProfiles │ └── Project_Default.xml ├── LICENSE ├── README.md ├── change-notes ├── 0_1_0.html ├── 0_1_1.html ├── 0_1_2.html └── 0_1_3.html ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images ├── example.png └── logo.png ├── plugin-description.html ├── settings.gradle.kts └── src └── main ├── kotlin └── com │ └── github │ └── lppedd │ └── cc │ └── commitlint │ ├── CommitlintConstants.kt │ ├── CommitlintIcons.kt │ └── CommitlintTokensProvider.kt └── resources ├── META-INF ├── plugin.xml ├── pluginIcon.svg └── pluginIcon_dark.svg └── icons └── commitlint.svg /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/dictionaries/Edoardo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/.idea/dictionaries/Edoardo.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/README.md -------------------------------------------------------------------------------- /change-notes/0_1_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/change-notes/0_1_0.html -------------------------------------------------------------------------------- /change-notes/0_1_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/change-notes/0_1_1.html -------------------------------------------------------------------------------- /change-notes/0_1_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/change-notes/0_1_2.html -------------------------------------------------------------------------------- /change-notes/0_1_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/change-notes/0_1_3.html -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/images/example.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/images/logo.png -------------------------------------------------------------------------------- /plugin-description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/plugin-description.html -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/main/kotlin/com/github/lppedd/cc/commitlint/CommitlintConstants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/src/main/kotlin/com/github/lppedd/cc/commitlint/CommitlintConstants.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/lppedd/cc/commitlint/CommitlintIcons.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/src/main/kotlin/com/github/lppedd/cc/commitlint/CommitlintIcons.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/lppedd/cc/commitlint/CommitlintTokensProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/src/main/kotlin/com/github/lppedd/cc/commitlint/CommitlintTokensProvider.kt -------------------------------------------------------------------------------- /src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/main/resources/META-INF/pluginIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/src/main/resources/META-INF/pluginIcon.svg -------------------------------------------------------------------------------- /src/main/resources/META-INF/pluginIcon_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/src/main/resources/META-INF/pluginIcon_dark.svg -------------------------------------------------------------------------------- /src/main/resources/icons/commitlint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lppedd/idea-conventional-commit-commitlint/HEAD/src/main/resources/icons/commitlint.svg --------------------------------------------------------------------------------