mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-12 02:37:45 +08:00
Refactor code structure for improved readability and maintainability
This commit is contained in:
24
reference/code-index-mcp-master/.pylintrc
Normal file
24
reference/code-index-mcp-master/.pylintrc
Normal 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
|
||||
Reference in New Issue
Block a user