Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 711 Bytes

install.md

File metadata and controls

24 lines (19 loc) · 711 Bytes

Installation

To start using flake8-tergeo, follow these steps:

  1. Install flake8-tergeo via pip:

    pip install flake8-tergeo
  2. Configure flake8: In your .flake8 configuration file, you need to set the following mandatory settings:

    • Enable flake8-tergeo extensions by adding FT to the enable-extensions option:

      [flake8]
      enable-extensions = FT
    • Set the select option to include C (mccabe), E (pycodestyle), F (pyflakes), W (pycodestyle), and FT (flake8-tergeo) to ensure that only the necessary checks are executed:

      [flake8]
      select = C,E,F,W,FT