How do you export Settings->Editor->Inspections->Java->Declaration redundancy->Unused declaration->Entry Points->Annotations and similar settings?
For example, I have configured Spring's @Value and @Autowired annotations to be implicitly written to get rid of a lot of warnings generated by the IDE. I have a bunch of similar best practice configurations I want to share with developers on the team.
I have tried the suggested approach in How to save/export all the settings of IntelliJ IDEA? but the exported zip does not contain my setting anywhere:
unzip settings.zip
grep -r -i autowire .
<empty result>
At the top of introspection I see I can export the Default IDE profile. The exported xml file also does not contain my annotations:
cat Default.xml
<profile version="1.0">
<option name="myName" value="Default" />
</profile>