Is it possible to have different code styles for headers and source files?
Answered
Our coding standard has different rules regarding function parameters for declarations (generally in .h) and definitions (generally in .c). Is it possible to configure CLion to handle this automatically?
Basically, the required styles are this, for headers:
void get_version(
uint8_t *major,
uint8_t *minor);
vs. this, for source files:
void get_version(uint8_t *major,
uint8_t *minor);
Please sign in to leave a comment.
Hello!
Unfortunately, there is no option to do that. Sorry for the inconvenience.