osmith has submitted this change. ( https://gerrit.osmocom.org/c/libasn1c/+/43431?usp=email )
Change subject: checkpatch: exclude space-indented files ......................................................................
checkpatch: exclude space-indented files
Some of the source files are indented with spaces instead of tabs. Don't lint them with checkpatch.
Change-Id: I102249f417b762efccbfc29523c14ea8307090a0 --- A .checkpatch.conf 1 file changed, 15 insertions(+), 0 deletions(-)
Approvals: fixeria: Looks good to me, but someone else must approve pespin: Looks good to me, approved Jenkins Builder: Verified
diff --git a/.checkpatch.conf b/.checkpatch.conf new file mode 100644 index 0000000..0e76a31 --- /dev/null +++ b/.checkpatch.conf @@ -0,0 +1,15 @@ +--exclude ^include/asn1c/INTEGER.h$ +--exclude ^include/asn1c/asn_internal.h$ +--exclude ^src/BOOLEAN.c$ +--exclude ^src/INTEGER.c$ +--exclude ^src/NULL.c$ +--exclude ^src/NativeEnumerated.c$ +--exclude ^src/OCTET_STRING.c$ +--exclude ^src/REAL.c$ +--exclude ^src/UTCTime.c$ +--exclude ^src/asn1helpers.c$ +--exclude ^src/constr_CHOICE.c$ +--exclude ^src/constr_SEQUENCE_OF.c$ +--exclude ^src/constr_SET_OF.c$ +--exclude ^src/per_opentype.c$ +--exclude ^src/per_support.c$