diff options
author | Rawi01 <Rawi01@users.noreply.github.com> | 2020-06-30 17:43:40 +0200 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2020-07-02 23:15:14 +0200 |
commit | 91f576e7e5930f3f7f730a2d3e779f26262adbf3 (patch) | |
tree | 6fe57082bb9c7c6bbf881c8ec351eca0dec43104 /website/templates | |
parent | 84556ebb00af1817d521bc011333a0ed02162cc4 (diff) | |
download | lombok-91f576e7e5930f3f7f730a2d3e779f26262adbf3.tar.gz lombok-91f576e7e5930f3f7f730a2d3e779f26262adbf3.tar.bz2 lombok-91f576e7e5930f3f7f730a2d3e779f26262adbf3.zip |
Documentation for lombok.addSuppressWarnings
Diffstat (limited to 'website/templates')
-rw-r--r-- | website/templates/features/configuration.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/website/templates/features/configuration.html b/website/templates/features/configuration.html index fa6d6371..16214d4e 100644 --- a/website/templates/features/configuration.html +++ b/website/templates/features/configuration.html @@ -100,6 +100,11 @@ <ol class="snippet example oneliner"> <li><code>lombok.extern.findbugs.addSuppressFBWarnings = true</code></li> </ol> + </p><p> + Lombok adds the <code>@SuppressWarnings("all")</code> annotation to all generated nodes by default. This can be turned off which is useful if you want to use static code analyzers like <a href="https://checkerframework.org/">Checker Framework</a>. + <ol class="snippet example oneliner"> + <li><code>lombok.addSuppressWarnings = false</code></li> + </ol> </p> </@f.featureSection> |