Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
gitlint/ | 22-Nov-2023 | - | 457 | 331 | ||
LICENSE | D | 22-Nov-2023 | 25.8 KiB | 503 | 418 | |
README | D | 22-Nov-2023 | 976 | 30 | 26 | |
android-style.xml | D | 22-Nov-2023 | 11.8 KiB | 244 | 240 | |
checkstyle.jar | D | 22-Nov-2023 | 5.2 MiB | |||
checkstyle.py | D | 22-Nov-2023 | 9.9 KiB | 300 | 222 | |
pre-push.py | D | 22-Nov-2023 | 1.2 KiB | 49 | 22 | |
tests.py | D | 22-Nov-2023 | 5.4 KiB | 149 | 100 |
README
1Description: 2Checkstyle is used by developers to validate Java code style before running repo upload. 3 4It can be invoked in two ways. 51. To check style of entire specific files: 6checkstyle.py -f FILE [FILE ...] 72. To check style of the lines modified in the latest commit: 8checkstyle.py 9 10Projects used: 11* Name: Checkstyle 12 Description: Checkstyle is a development tool to help programmers write Java code that 13 adheres to a coding standard. 14 URL: http://checkstyle.sourceforge.net/ 15 Version: 6.12.1 16 License: LGPL 2.1 17 License File: LICENSE 18 Local Modifications: 19 - Downloaded checkstyle-6.12.1-all.jar without source code. 20 21* Name: Git-Lint 22 Description: Git-lint is a tool to run lint checks on only files changed in 23 the latest commit. 24 URL: https://github.com/sk-/git-lint/ 25 Version: 0.0.8 26 License: Apache 2.0 27 License File: gitlint/LICENSE 28 Local Modifications: 29 - Downloaded gitlint/git.py and git/utils.py files individually. 30