summaryrefslogtreecommitdiff
path: root/llama.cpp/.flake8
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-02-12 20:57:17 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-02-12 20:57:17 +0100
commitb333b06772c89d96aacb5490d6a219fba7c09cc6 (patch)
tree211df60083a5946baa2ed61d33d8121b7e251b06 /llama.cpp/.flake8
downloadllmnpc-b333b06772c89d96aacb5490d6a219fba7c09cc6.tar.gz
Engage!
Diffstat (limited to 'llama.cpp/.flake8')
-rw-r--r--llama.cpp/.flake818
1 files changed, 18 insertions, 0 deletions
diff --git a/llama.cpp/.flake8 b/llama.cpp/.flake8
new file mode 100644
index 0000000..669d231
--- /dev/null
+++ b/llama.cpp/.flake8
@@ -0,0 +1,18 @@
+[flake8]
+max-line-length = 125
+ignore = E203,E211,E221,E225,E231,E241,E251,E261,E266,E501,E701,E704,W503
+exclude =
+ # Do not traverse examples and tools
+ examples,
+ tools,
+ # Do not include package initializers
+ __init__.py,
+ # No need to traverse our git directory
+ .git,
+ # There's no value in checking cache directories
+ __pycache__,
+ # No need to include the build path
+ build,
+ # This contains builds that we don't want to check
+ dist # This is generated with `python build .` for package releases
+# max-complexity = 10