Commit 438a78d
authored
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
3 | 25 | | |
4 | 26 | | |
5 | 27 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
4 | | - | |
| 4 | + | |
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
71 | 71 | | |
72 | 72 | | |
73 | 73 | | |
74 | | - | |
| 74 | + | |
75 | 75 | | |
76 | 76 | | |
77 | 77 | | |
| |||
87 | 87 | | |
88 | 88 | | |
89 | 89 | | |
90 | | - | |
| 90 | + | |
91 | 91 | | |
92 | 92 | | |
93 | 93 | | |
| |||
163 | 163 | | |
164 | 164 | | |
165 | 165 | | |
166 | | - | |
| 166 | + | |
167 | 167 | | |
168 | 168 | | |
169 | 169 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
- .git-blame-ignore-revs+2
- CONTRIBUTING.md+40
- Cargo.lock+4-4
- crates/ruff_benchmark/benches/ty_walltime.rs+2-2
- crates/ruff_linter/resources/test/fixtures/flake8_self/SLF001_2.py+43
- crates/ruff_linter/resources/test/fixtures/flake8_self/SLF001_custom_decorators.py+19
- crates/ruff_linter/resources/test/fixtures/pycodestyle/E502.py+8
- crates/ruff_linter/resources/test/fixtures/pyupgrade/UP012.py+6
- crates/ruff_linter/resources/test/fixtures/ruff/RUF072.py+9-1
- crates/ruff_linter/src/rules/flake8_self/mod.rs+18
- crates/ruff_linter/src/rules/flake8_self/rules/private_member_access.rs+76-2
- crates/ruff_linter/src/rules/flake8_self/snapshots/ruff_linter__rules__flake8_self__tests__custom_method_decorators.snap+11
- crates/ruff_linter/src/rules/flake8_self/snapshots/ruff_linter__rules__flake8_self__tests__private-member-access_SLF001_2.py.snap+4
- crates/ruff_linter/src/rules/pycodestyle/snapshots/ruff_linter__rules__pycodestyle__tests__preview__E502_E502.py.snap+49-10
- crates/ruff_linter/src/rules/pyupgrade/rules/unnecessary_encode_utf8.rs+4-2
- crates/ruff_linter/src/rules/ruff/snapshots/ruff_linter__rules__ruff__tests__preview__RUF072_RUF072.py.snap+22
- crates/ruff_python_formatter/tests/fixtures.rs+8-1
- crates/ruff_python_formatter/tests/snapshots/format@expression__nested_string_quote_style.py.snap+16-16
- crates/ruff_python_index/src/indexer.rs+23-5
- crates/ruff_python_trivia/src/textwrap.rs+19
- crates/ty/tests/cli/python_environment.rs+36
- crates/ty_project/src/metadata.rs+61-1
- crates/ty_project/src/metadata/options.rs+29-2
- crates/ty_project/src/metadata/pyproject.rs+15-3
- crates/ty_python_semantic/resources/mdtest/bidirectional.md-1
- crates/ty_python_semantic/resources/mdtest/call/constructor.md+896-28
- crates/ty_python_semantic/resources/mdtest/call/new_class.md+300
- crates/ty_python_semantic/resources/mdtest/call/type.md+35-5
- crates/ty_python_semantic/resources/mdtest/call/union.md+26
- crates/ty_python_semantic/resources/mdtest/dataclasses/fields.md+26-17
- crates/ty_python_semantic/resources/mdtest/enums.md+58-6
- crates/ty_python_semantic/resources/mdtest/external/sqlmodel.lock+25-25
- crates/ty_python_semantic/resources/mdtest/external/sqlmodel.md+3-3
- crates/ty_python_semantic/resources/mdtest/generics/legacy/classes.md+2-2
- crates/ty_python_semantic/resources/mdtest/generics/pep695/classes.md+2-4
- crates/ty_python_semantic/resources/mdtest/metaclass.md+523
- crates/ty_python_semantic/resources/mdtest/mro.md+14
- crates/ty_python_semantic/resources/mdtest/named_tuple.md+15
- crates/ty_python_semantic/resources/mdtest/type_of/generics.md+10
- crates/ty_python_semantic/resources/mdtest/typed_dict.md+4-4
- crates/ty_python_semantic/resources/mdtest/with/sync.md+40
- crates/ty_python_semantic/src/semantic_index/use_def.rs+25
- crates/ty_python_semantic/src/types.rs+111-87
- crates/ty_python_semantic/src/types/call/bind.rs+478-239
- crates/ty_python_semantic/src/types/call/bind/constructor.rs+686
- crates/ty_python_semantic/src/types/class.rs+12-1
- crates/ty_python_semantic/src/types/class/dynamic_literal.rs+45-38
- crates/ty_python_semantic/src/types/class/static_literal.rs+12-25
- crates/ty_python_semantic/src/types/enums.rs+32-44
- crates/ty_python_semantic/src/types/function.rs+8-7
- crates/ty_python_semantic/src/types/generics.rs+3-2
- crates/ty_python_semantic/src/types/infer/builder.rs+125-697
- crates/ty_python_semantic/src/types/infer/builder/dynamic_class.rs+298
- crates/ty_python_semantic/src/types/infer/builder/named_tuple.rs+22-60
- crates/ty_python_semantic/src/types/infer/builder/new_class.rs+286
- crates/ty_python_semantic/src/types/infer/builder/post_inference/dynamic_class.rs+3-4
- crates/ty_python_semantic/src/types/infer/builder/type_call.rs+357
- crates/ty_python_semantic/src/types/iteration.rs+49
- scripts/check_ecosystem.py+10-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
0 commit comments