Add setup.cfg with sensible flake8 configuration
authorSimon Marchi <simon.marchi@efficios.com>
Tue, 24 Sep 2019 16:01:28 +0000 (12:01 -0400)
committerSimon Marchi <simon.marchi@efficios.com>
Thu, 26 Sep 2019 01:52:28 +0000 (21:52 -0400)
commitf641029a30fc8d40a6d178541aad910593a49c7a
tree7a48acdfc7ffed32a530c56b6ba840a4d0cdedfe
parent8d8b141db4c46135a35be19e4a1c192f6a36d67b
Add setup.cfg with sensible flake8 configuration

This is a sensible config which allows to run "flake8 ." without having
too many useless warnings.

Note that the `per-file-ignores` config requires flake8 >= 3.7.

Ignore:

- E501, line too long, because we don't really care about that (black
  decides how it's formatted anyway).
- W503, line break before bbinary operator, because we don't really care
  about that (black decides how it's formatted anyway).

__init__.py contains some expectedly unused imports, so it seems cleaner
to disable that warning for the whole file, rather than putting a "noqa"
comment on each line.  Of course, we risk having a really unused import
in that file, but it doesn't contain much, so the risk is low.

Finally, exclude the Python tap directory, as it's not our code.

Change-Id: Iebdf274b91907fb31d4ebfa6ae4c8157de46467c
Signed-off-by: Simon Marchi <simon.marchi@efficios.com>
Reviewed-on: https://review.lttng.org/c/babeltrace/+/2083
Reviewed-by: Francis Deslauriers <francis.deslauriers@efficios.com>
setup.cfg [new file with mode: 0644]
This page took 0.025618 seconds and 4 git commands to generate.