Skip to content
This repository has been archived by the owner on Feb 11, 2022. It is now read-only.

Update findbugs docs on dev branch #113

Merged
merged 1 commit into from Jul 28, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 1 addition & 19 deletions docs/tools/findbugs.md
Expand Up @@ -28,22 +28,4 @@ You can have multiple `exclude` statements.
For more informations about Findbugs rules, refer to the [official website](http://findbugs.sourceforge.net/bugDescriptions.html).

## Findbugs in mixed-language projects
If your project mixes Java and Kotlin code, you most likely want to have an exclusion in place for all `*.kt` files. You can use the `exclude`
in the configuration closure, or you can do so by adding a suppression to the filter file:

`findbugs-excludes.xml`
```xml
<FindBugsFilter>

...

<Match>
<Source name="~.*\.kt" />
</Match>

...

</FindBugsFilter>
```


If your project mixes Java and Kotlin code, your Kotlin source files will automatically be ignored.