123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- [flake8]
- ignore =
- E203, # whitespace before ':' (Black)
- W503, # line break before binary operator (Black)
- E501, # line too long (fix needed)
- E265, # block comment should start with '# ' (fix needed)
- per-file-ignores =
- # Many of these ignores can and should be removed and the problem fixed.
- # F841 local variable is assigned to but never used
- # F403 star import used; unable to detect undefined names
- # F405 variable may be undefined, or defined from star imports
- # E402 module level import not at top of file
- core/gcmd.py: E402
- core/gthread.py: F841
- core/gconsole.py: E722, W605
- core/toolboxes.py: E722
- core/utils.py: E722, F841, W605
- core/workspace.py: E722
- core/render.py: E722, F841
- core/ws.py: F841
- core/settings.py: E722
- datacatalog/tree.py: E731, E402
- dbmgr/*: F841, E722
- docs/wxgui_sphinx/conf.py: E402
- gcp/*: F841, E722
- gmodeler/*: F841, E722, W605, F405, F403, E402
- gui_core/*: F841, E266, E722, W605
- image2target/*: F841, E722
- iscatt/*: F841, E722, E741, F405, F403
- lmgr/*: F841, E266, E722, E741, W605
- # layertree still includes some formatting issues (it is ignored by Black)
- lmgr/layertree.py: E722, E266, W504, E225
- modules/*: F841, E722, W605
- nviz/*: F841, E266, E722, W605, F403, F405
- photo2image/*: F841, E722
- psmap/*: F841, E266, E722, F405, F403
- vdigit/*: F841, E722, E741, F405, F403
- vnet/*: F841
- wxgui.py: F841
- animation/mapwindow.py: F841
- animation/provider.py: F841
- tplot/frame.py: F841, E722
- rdigit/g.gui.rdigit.py: F841
- iclass/dialogs.py: E741
- iclass/digit.py: F405, F403
- iclass/frame.py: F405, F403
- iclass/statistics.py: F841, F405, F403
- wxplot/histogram.py: E722
- wxplot/profile.py: F841, E722
- wxplot/base.py: F841, E722
- location_wizard/dialogs.py: F841
- location_wizard/wizard.py: E722
- mapdisp/main.py: E722
- mapdisp/statusbar.py: F841
- mapwin/base.py: E722
- mapwin/buffered.py: E722
- mapwin/graphics.py: E722
- startup/locdownload.py: E722, E402
- tools/build_modules_xml.py: E722
- web_services/widgets.py: F841, E741, W605, E402
- rlisetup/frame.py: E741
- rlisetup/sampling_frame.py: F841
- rlisetup/wizard.py: E722, E741
- # This file will be deleted.
- gis_set.py: E722
- max-line-length = 88
- exclude =
- .git,
- __pycache__,
- .env,
- .venv,
- env,
- venv,
- ENV,
- env.bak,
- venv.bak,
- ctypes,
- pydispatch,
- testsuite,
- builtins =
- _
|