19 lines
337 B
Bash
Executable file
19 lines
337 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Use the norminette but without all these rules that make coding harder.
|
|
|
|
norminette $* | grep -v \
|
|
"INVALID_HEADER
|
|
VAR_DECL_START_FUNC
|
|
EMPTY_LINE_FUNCTION
|
|
TOO_MANY_ARGS
|
|
TOO_MANY_FUNCS
|
|
TOO_MANY_LINES
|
|
PREPROC_CONSTANT
|
|
GLOBAL_VAR_DETECTED
|
|
WRONG_SCOPE_COMMENT
|
|
MULT_DECL_LINE
|
|
FORBIDDEN
|
|
FBIDDEN
|
|
SPACE_EMPTY_LINE
|
|
DECL_ASSIGN_LINE"
|