diff --git a/.flake8 b/.flake8 new file mode 100644 index 0000000..b689a6a --- /dev/null +++ b/.flake8 @@ -0,0 +1,18 @@ +[flake8] +# Maximum line length +max-line-length = 90 + +# Exclude specific directories +exclude = + .git, + __pycache__, + build, + dist, + lib + +# Ignore specific errors and warnings +ignore = + E203, + E266, + E501, + W503 \ No newline at end of file