summaryrefslogtreecommitdiff
path: root/.flake8
diff options
context:
space:
mode:
Diffstat (limited to '.flake8')
-rw-r--r--.flake815
1 files changed, 15 insertions, 0 deletions
diff --git a/.flake8 b/.flake8
new file mode 100644
index 0000000..6099141
--- /dev/null
+++ b/.flake8
@@ -0,0 +1,15 @@
+[flake8]
+max-line-length = 120
+exclude = .git,
+ __pycache__,
+ old,
+ build,
+ dist,
+ .venv,
+ .vscode,
+ .pytest_cache,
+ __init__.py,
+ .mypy_cache,
+ src/robusta/integrations/kubernetes/autogenerated,
+ src/robusta/integrations/kubernetes/custom_models.py
+ignore = E501, W503, E203