Refactor code structure for improved readability and maintainability

This commit is contained in:
catlog22
2025-12-12 11:19:58 +08:00
parent 77de8d857b
commit b74a90b416
169 changed files with 29206 additions and 369 deletions

View File

@@ -0,0 +1,24 @@
[MAIN]
# Ignore auto-generated protobuf files
ignore-paths=src/code_index_mcp/scip/proto/scip_pb2.py
[MESSAGES CONTROL]
# Disable specific warnings for protobuf generated code
disable=
# Generated code warnings
protected-access,
bad-indentation,
line-too-long,
# Other common warnings we might want to disable globally
unused-import,
logging-fstring-interpolation
[FORMAT]
# Maximum number of characters on a single line
max-line-length=100
[DESIGN]
# Maximum number of arguments for function / method
max-args=7
# Maximum number of locals for function / method body
max-locals=20