Compare commits
No commits in common. "200f4efc590f512c5601e58c48d278deb37654b6" and "aad443ec01456aa197c666a1ad0dfe93be12cc5a" have entirely different histories.
200f4efc59
...
aad443ec01
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -4,7 +4,6 @@
|
||||||
/secrets/
|
/secrets/
|
||||||
/private_deps/
|
/private_deps/
|
||||||
/data/
|
/data/
|
||||||
/config/
|
|
||||||
|
|
||||||
# Python
|
# Python
|
||||||
__pycache__/
|
__pycache__/
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
__version__ = '0.1.6'
|
__version__ = '0.1.5'
|
69
ruff.toml
69
ruff.toml
|
@ -1,69 +0,0 @@
|
||||||
#[tool.ruff]
|
|
||||||
lint.select = [ 'ALL' ]
|
|
||||||
lint.ignore = [
|
|
||||||
'ANN', # Type annotations (lots of work.)
|
|
||||||
'FBT', # Boolean trap is bullshit.
|
|
||||||
'C90', 'PLR0911', 'PLR0915', 'PLR0913', # Code complexity measures are bullshit.
|
|
||||||
'Q003', 'D205', # Format conflict
|
|
||||||
|
|
||||||
'TCH', # Microoptimization at the cost of readability
|
|
||||||
|
|
||||||
'D100', 'D101', 'D102', 'D103', 'D104', 'D105', 'D106', 'D107', 'D300', 'D401', # Missing docstrings (lots of work)
|
|
||||||
'TD002', 'TD003', 'TD004', 'FIX', # Who cares about TODO standards?
|
|
||||||
"E501", 'PLR0912', 'PTH123', 'F405', 'E402', 'PLW0603',
|
|
||||||
|
|
||||||
'SIM102',
|
|
||||||
|
|
||||||
'TRY002', 'TRY003',
|
|
||||||
]
|
|
||||||
|
|
||||||
# Autofix
|
|
||||||
lint.fixable = [
|
|
||||||
'SIM', 'C', 'Q', 'D',
|
|
||||||
'UP035', 'UP004', 'UP032', 'UP006', 'UP007', 'I001',
|
|
||||||
'F401', 'COM812', 'B011', 'PLR1722', 'PLR0402', 'S101',
|
|
||||||
]
|
|
||||||
lint.unfixable = ['SIM102', 'SIM114']
|
|
||||||
|
|
||||||
# Exclude a variety of commonly ignored directories.
|
|
||||||
exclude = [
|
|
||||||
".bzr",
|
|
||||||
".direnv",
|
|
||||||
".eggs",
|
|
||||||
".git",
|
|
||||||
".hg",
|
|
||||||
".mypy_cache",
|
|
||||||
".nox",
|
|
||||||
".pants.d",
|
|
||||||
".pytype",
|
|
||||||
".ruff_cache",
|
|
||||||
".svn",
|
|
||||||
".tox",
|
|
||||||
".venv",
|
|
||||||
"__pypackages__",
|
|
||||||
"_build",
|
|
||||||
"buck-out",
|
|
||||||
"build",
|
|
||||||
"dist",
|
|
||||||
"node_modules",
|
|
||||||
"venv",
|
|
||||||
]
|
|
||||||
|
|
||||||
# Same as Black.
|
|
||||||
line-length = 88
|
|
||||||
|
|
||||||
# Allow unused variables when underscore-prefixed.
|
|
||||||
lint.dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
|
|
||||||
|
|
||||||
# Assume Python 3.10.
|
|
||||||
target-version = "py310"
|
|
||||||
|
|
||||||
[lint.flake8-quotes]
|
|
||||||
inline-quotes = "single"
|
|
||||||
multiline-quotes = "double"
|
|
||||||
docstring-quotes = "double"
|
|
||||||
|
|
||||||
[format]
|
|
||||||
quote-style = "single"
|
|
||||||
indent-style = "space"
|
|
||||||
docstring-code-format = true
|
|
Loading…
Reference in New Issue
Block a user