MyPy compliance for the whole codebase - systematic way of executing tools (`executor.py`) - support for using pydantic models in tool inputs and outputs - mypy compliance (most of the changes) - removal of unused code (from previous iterations) Co-authored-by: Nate Barbettini <nate@arcade-ai.com>
14 lines
321 B
INI
14 lines
321 B
INI
# Stop the editor from looking for .editorconfig files in the parent directories
|
|
root = true
|
|
|
|
[*]
|
|
charset = utf-8
|
|
insert_final_newline = true
|
|
end_of_line = lf
|
|
indent_style = space
|
|
indent_size = 4
|
|
max_line_length = 120
|
|
|
|
[*.{json,jsonc,yml,yaml}]
|
|
indent_style = space
|
|
indent_size = 2 # This is also set in .prettierrc.toml
|