To start using flake8-tergeo, follow these steps:
-
Install flake8-tergeo via pip:
pip install flake8-tergeo
-
Configure flake8: In your
.flake8
configuration file, you need to set the following mandatory settings:-
Enable flake8-tergeo extensions by adding
FT
to theenable-extensions
option:[flake8] enable-extensions = FT
-
Set the
select
option to includeC
(mccabe
),E
(pycodestyle
),F
(pyflakes
),W
(pycodestyle
), andFT
(flake8-tergeo
) to ensure that only the necessary checks are executed:[flake8] select = C,E,F,W,FT
-