IMPORTANT: This is not yet verified
1. I configured checkstyle linter on a project with the following configuration:
```lang=json
"checkstyle": {
"type": "checkstyle",
"include": "(\\.java$)",
"bin": "./misc-utils/lib/jars/checkstyle-6.13-all.jar",
"flags": [
"-c",
"/Users/cspeckrun/Desktop/google_checks.xml"
],
"checkstyle.simplify-source-classname": true
}
```
2. I ran `arc linters` and verified that "checkstyle" was shown as "CONFIGURED"
3. I ran `arc lint MyBadJavaClass.java` on a java file which contained a measurable number of lint errors.
4. I verified that the reported lint errors corresponded to my expected lint errors from previously running checkstyle manually on the same file.
5. I ran `arc lint MyGoodJavaClass.java` on a java file which contained no lint errors.
6. I verified that there were no reported lint errors.
7. I updated the `.arclint` file to remove the `simplify-source-classname` field, then re-ran steps 2-4 and additionally verified that the reported source name was no longer simplified.