mirror of
https://github.com/ApfelTeeSaft/lightspeed64.git
synced 2026-08-26 19:33:24 +00:00
* [SM64] Animations Rewrite/Rework * [SM64] Animations Rewrite/Rework * Remove animation docs from README until I write new ones in fast64_docs * remove accidental exports * merge conflicts? * Fix level export includes dups * Fixed comment adjust function * change table properties to only have elements * Update properties.py * Rename * bounds check * keep default action name consistent with blender * as_posix fix and clean up * designated is include in repo settings, include in tooltip * Fix empty text files * fix peach's address * Some attempts at tasteful comments Verbose documentation like docstrings is.. not my strong suite * allow str, use path in f3d writer * better valid filename func * fix things! * review and a personal nit * Add docs link
30 lines
893 B
TOML
30 lines
893 B
TOML
[tool.black]
|
|
# Black configuration (code formatter)
|
|
# See https://black.readthedocs.io/en/stable/usage_and_configuration/the_basics.html
|
|
# or `black --help` for what can go here
|
|
|
|
# Require black version to be 23.x.y
|
|
required-version = '23'
|
|
# Install such a version with:
|
|
# pip install 'black>=23,<24'
|
|
|
|
line-length = 120
|
|
|
|
target-version = [
|
|
'py310', # used by Blender 3.1
|
|
]
|
|
|
|
# What files to exclude when running Black on directories (for example `black .`)
|
|
# Use forward slashes for directory delimiters, even on Windows
|
|
# This is a regular expression, escape dots with a backslash like '\.'
|
|
# Note: This is a verbose regex (whitespace and "comments" are ignored)
|
|
# https://docs.python.org/3/library/re.html#re.VERBOSE
|
|
extend-exclude = '''
|
|
^(
|
|
# Addon updater is copied from another repo
|
|
/addon_updater\.py | /addon_updater_ops\.py
|
|
)$
|
|
'''
|
|
|
|
[tool.pyright]
|
|
reportInvalidTypeForm = 'none' |