diff options
| author | Filip Wandzio <contact@philw.dev> | 2026-01-24 08:29:14 +0100 |
|---|---|---|
| committer | Filip Wandzio <contact@philw.dev> | 2026-01-24 08:29:14 +0100 |
| commit | a393e0a2f2c3678a3ea869dc1417fa269f2b1040 (patch) | |
| tree | 606df6a9284b5bd2dbf84fa5e3d363b8e6a01322 /clippy.toml | |
| parent | 72ddd7b7704f2087a52c9c0552446682918c513b (diff) | |
| download | dml-a393e0a2f2c3678a3ea869dc1417fa269f2b1040.tar.gz dml-a393e0a2f2c3678a3ea869dc1417fa269f2b1040.zip | |
Resolve audio not loading bug
Ensure all assets are downloading for each version
Temporarily disable minecraft versions older than 1.8 because of the asset/manifest loading issues
Implement basic documentation of modules
Implement basic async/multithreading for downloading assets
Diffstat (limited to 'clippy.toml')
| -rw-r--r-- | clippy.toml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clippy.toml b/clippy.toml index f688e0a..6b15c5a 100644 --- a/clippy.toml +++ b/clippy.toml | |||
| @@ -1,8 +1,8 @@ | |||
| 1 | stack-size-threshold = 393216 | 1 | stack-size-threshold = 393216 |
| 2 | future-size-threshold = 24576 | 2 | future-size-threshold = 24576 |
| 3 | array-size-threshold = 4096 | 3 | array-size-threshold = 4096 |
| 4 | large-error-threshold = 256 # TODO reduce me ALARA | 4 | large-error-threshold = 256 |
| 5 | too-many-lines-threshold = 100 # TODO reduce me to <= 100 | 5 | too-many-lines-threshold = 100 |
| 6 | excessive-nesting-threshold = 3 | 6 | excessive-nesting-threshold = 3 |
| 7 | type-complexity-threshold = 250 # reduce me to ~200 | 7 | type-complexity-threshold = 250 |
| 8 | cognitive-complexity-threshold = 100 # TODO reduce me ALARA | 8 | cognitive-complexity-threshold = 100 |
