How to disable code inspection for all project

Can I disable code inspection completely ?
It seems to be broken and useless, at least in my project.

I know about special #pragma s, they make then the compiler complain about unknown pragmas which gets my colleagues nervous.

2
5 comments
Avatar
Permanently deleted user
#pragma clang diagnostic push
#pragma ide diagnostic ignored "IncompatibleTypes"
    m_dst_property_table__.for_each_property( [&]( const_property_ptr_t prop )
                                              {
                                                  if( prop->GetId() != doc_it_prop_id &&
                                                      !prop->GetColumnName().empty() )
                                                  {
                                                      offer_vertical << ',' << prop->GetColumnName();
                                                      vertical_props.push_back(prop->GetId());
                                                  }
                                              }
    );
#pragma clang diagnostic pop
0
Avatar
Permanently deleted user

0
Avatar
Permanently deleted user

Ну и хде оно?

 

0

the question is where to find the button to just disable the whole thing per default for new projects.
I am working mostly with Jenkinsfile and CICD and the whole coding support just sucks.
I am sooooo tired to have to disable it again and again in every new checkout. a few every week....
And to deal with all the inspections individually is just NOT the right way to do this.

so WHERE IS THIS BUTTON PLEASE.

if it does not exist please ADD ONE!

there will be more and more devops user and WE NEED THIS!

0

Please sign in to leave a comment.