Commit Graph

131 Commits

Author SHA1 Message Date
Eric Traut
2ec4a682ec Updated typeshed to the latest. 2021-05-13 17:07:31 -07:00
Jake Bailey
893d08be8c Update everything for main branch rename 2021-05-13 13:26:44 -07:00
Eric Traut
7bb059ecba Published 1.1.138 2021-05-06 14:36:55 -07:00
Eric Traut
cbf53418e5 Published 1.1.137 2021-05-04 16:07:32 -07:00
Jake Bailey
414b7e8ba4
Performance improvements, remove dep (#1826)
Co-authored-by: HeeJae Chang <hechang@microsoft.com>
2021-05-04 15:04:01 -07:00
Eric Traut
46bf68842a Removed execution environment "venv" key from pyrightconfig.json schema file because we removed support for this a while ago. 2021-04-30 13:51:49 -07:00
Eric Traut
0d11b2ab25 Published 1.1.136 2021-04-28 17:25:34 -07:00
Eric Traut
b647114067 Published 1.1.135 2021-04-25 23:44:35 -07:00
Eric Traut
2dfda68a37 Published 1.1.134 2021-04-23 22:42:58 -07:00
Jake Bailey
a9cf4129d2
Update dependencies (#1789) 2021-04-22 17:03:14 -07:00
Eric Traut
7c02add8d3 Published 1.1.133 2021-04-20 22:06:39 -07:00
Eric Traut
69a0c5594a Added support for pyproject.toml files. 2021-04-20 21:51:39 -07:00
Eric Traut
3dec7f5e3e Published 1.1.132 2021-04-16 20:46:54 -07:00
Eric Traut
ea9e76fe78 Published 1.1.131 2021-04-16 18:54:39 -07:00
Eric Traut
dd59aca0d3 Published 1.1.130 2021-04-09 21:51:23 -07:00
Eric Traut
27fb622a5e Implemented new diagnostic rule "reportUnnecessaryComparison". It checks for "==" and "!=" comparisons where the LHS and RHS types have no overlap and the LHS has no __eq__ overload. This new diagnostic rule is off by default in normal type checking mode but is on in strict mode. 2021-04-08 16:32:08 -07:00
Eric Traut
96871bec5a Published 1.1.129 2021-04-06 17:00:25 -07:00
Eric Traut
4f03ba88c0 Added configuration option "strictSetInference" which is analogous to "strictListInference" and "strictDictionaryInference" but specifically for set expressions. 2021-04-03 08:35:40 -07:00
Eric Traut
4d2c913ad9 Published 1.1.128 2021-04-02 21:04:58 -07:00
Eric Traut
ba71f25743 Published 1.1.127 2021-03-31 13:01:14 -07:00
Eric Traut
91e44355e8 Added PEP 487 to the list of supported PEPs. 2021-03-31 10:35:25 -07:00
Eric Traut
ea8628909a Added "reportTypedDictNotRequiredAccess" diagnostic rule and split out diagnostics that pertain specifically to unguarded accesses to non-required TypedDict keys. 2021-03-27 09:28:28 -07:00
Eric Traut
6f71f22fa7 Published 1.1.126 2021-03-26 21:20:21 -07:00
Eric Traut
be28f16e99 Published 1.1.125 2021-03-24 15:18:57 -07:00
Eric Traut
36e314ec19 Published 1.1.124 2021-03-22 23:32:03 -07:00
Eric Traut
535ed3ad1b Published 1.1.123 2021-03-18 22:47:25 -07:00
Jake Bailey
df24cf916a
Update dependencies (#1655) 2021-03-18 16:39:24 -07:00
Eric Traut
013628dded Published 1.1.122 2021-03-16 20:14:35 -07:00
Eric Traut
463e336409 Added "extraPaths" to pythonconfig.json schema. 2021-03-16 14:05:57 -07:00
Eric Traut
2c0b17e94c Published 1.1.121 2021-03-13 10:06:00 -08:00
Eric Traut
dfa5892b73 Added newly-supported PEPs to README documentation. 2021-03-10 21:51:43 -08:00
Eric Traut
6217c1f39b Published 1.1.120 2021-03-09 22:15:32 -08:00
Eric Traut
194a26e98f Published 1.1.119 2021-03-08 22:19:36 -08:00
Eric Traut
d423c7831c Published 1.1.118 2021-03-05 10:37:32 -07:00
Eric Traut
57d35f55d1 Published 1.1.117 2021-03-02 13:53:48 -07:00
Eric Traut
74fc8b294a Published 1.1.116 2021-03-01 00:16:44 -07:00
Jake Bailey
177714b1a6
Bump deps, handle py.typed in indexer, duplicate auto-import fix (#1548)
Co-authored-by: HeeJae Chang <hechang@microsoft.com>
2021-02-26 11:04:03 -08:00
Eric Traut
f5916b7965 Published 1.1.115 2021-02-24 19:35:25 -07:00
Eric Traut
2770136023
Added support for comments and trailing comments within pyrightconfig… (#1535)
* Added support for comments and trailing comments within pyrightconfig.json config file.

* Replaced tabs with spaces

Co-authored-by: Eric Traut <erictr@microsoft.com>
2021-02-24 15:12:26 -07:00
Eric Traut
eb93ba07db Published 1.1.114 2021-02-23 13:22:12 -07:00
Eric Traut
68fca4eab6 Added "reportOverlappingOverload" diagnostic rule, splitting out a few checks that were previously in the "reportGeneralTypeIssue" rule. This allows for finer-grained control over these overload checks. 2021-02-20 09:28:57 -07:00
Eric Traut
6d2484c4b8 Published 1.1.113 2021-02-19 15:58:09 -07:00
Eric Traut
f7cdad2ee8 Published 1.1.112 2021-02-17 01:00:43 -07:00
Rafał Chłodnicki
c07ca70573
Sync python.analysis.logLevel setting with the code (#1496)
* Sync python.analysis.logLevel setting with the code

According to the code the value of "python.analysis.logLevel" are
"error", "warn", "info" and "log", and not what was said in the
documentation and the schema.

* revert changes and just fix schema
2021-02-16 15:15:09 -07:00
Eric Traut
6ee87beff0 Published 1.1.111 2021-02-15 17:46:02 -07:00
Eric Traut
68d92d6f43 Published 1.1.110 2021-02-14 00:57:13 -07:00
Eric Traut
0e5014023d Published 1.1.109 2021-02-07 16:02:17 -08:00
Eric Traut
3955e305b6 Published 1.1.108 2021-02-01 20:42:49 -08:00
Eric Traut
eeb59ee2e0 Published 1.1.107 2021-01-30 16:39:34 -08:00
Eric Traut
61c53da4a4 Published 1.1.106 2021-01-27 11:29:32 -08:00