do i need to worry about inspection issues from bu...
# intellij
s
do i need to worry about inspection issues from build directories? for example:
Copy code
PluginSpecBuildersFor$f1aa8c20a83a561deeaf97817f973d9f.kt 14 warnings
Line is longer than allowed by code style (> 120 columns)
/home/macropreprocessor/AndroidStudioProjects/kppmaster/buildSrc/build/generated-sources/kotlin-dsl-external-plugin-spec-builders/kotlin/gradle/kotlin/dsl/plugins/PluginSpecBuildersFor$f1aa8c20a83a561deeaf97817f973d9f.kt
     * The `org.gradle.build-announcements` plugin implemented by [org.gradle.api.plugins.announce.BuildAnnouncementsPlugin].
m
A warning is just a warning about for instance bad (although bad is of course subjective, one might argue) coding practice (this particular warning), problems down the road (deprecated stuff) etc. The code will still run. They are there for a reason though and they're there to help you. Fixing code that causes warnings will generally make life easier in the long run. Also, my reply to your previous post linking the code of conduct wasn't addressed to that message specifically, it was a hint on how to use this Slack (As an example, 10 out of the 11 messages (actually more, but under one timestamp) from yesterday are yours).
s
ok
k
@mickeelm It looks like he's talking about style warnings from generated code though, and those can probably be ignored.
m
Ah 🙂