I'm trying to use flake8 only on 3 specific sub directories: features_v2
, rules_v2
and indicators_v2
.
In order to test if my pattern is correct I tried applying it only to features_v2 at first. so I came up with this pattern: exclude = ^(?!.*features_v2).*$
but sadly it doesn't seems to work. Is flake8 does not support lookaround, or it does and I did something wrong?
Is there a better way to use flake on 3 different subdirectories?
flake8 ./*
orflake8 **/**
or something else? – Fleck