mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
It's safer to use ' instead of ' in inspection descriptions because ' became the part of the HTML standard only in 5 version.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<html>
|
||||
<body>
|
||||
This inspection detects when there aren't all abstract properties/methods are defined in subclass
|
||||
This inspection detects when there aren't all abstract properties/methods are defined in subclass
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,6 +1,6 @@
|
||||
<html>
|
||||
<body>
|
||||
This inspection highlights too broad exception clauses such as
|
||||
no exception class specified, or specified as 'Exception'.
|
||||
no exception class specified, or specified as 'Exception'.
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,6 +1,6 @@
|
||||
<html>
|
||||
<body>
|
||||
This inspection highlights comparisons with None. That type of comparisons
|
||||
should always be done with 'is' or 'is not', never the equality operators.
|
||||
should always be done with 'is' or 'is not', never the equality operators.
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,6 +1,6 @@
|
||||
<html>
|
||||
<body>
|
||||
Enable this inspection if you need your code to be compatible with a range of Python versions (for example, if you're building a
|
||||
Enable this inspection if you need your code to be compatible with a range of Python versions (for example, if you're building a
|
||||
library).
|
||||
The range of Python versions with which the code needs to be compatible can be specified in the inspection settings.
|
||||
</body>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<html>
|
||||
<body>
|
||||
This inspection detects when a custom exception class is raised but doesn't inherit from the builtin "Exception" class.
|
||||
This inspection detects when a custom exception class is raised but doesn't inherit from the builtin "Exception" class.
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,6 +1,6 @@
|
||||
<html>
|
||||
<body>
|
||||
This inspection detects mismatched parameters in a docstring.
|
||||
Please note that it doesn't warn you of missing parameters, if none of them is mentioned in a docstring.
|
||||
Please note that it doesn't warn you of missing parameters, if none of them is mentioned in a docstring.
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,5 +1,5 @@
|
||||
<html>
|
||||
<body>
|
||||
This inspection detects cases when first parameter, such as 'self' or 'cls', is reassigned in a method.
|
||||
In most cases imaginable, there's no point in such reassignment, and it indicates an error.
|
||||
This inspection detects cases when first parameter, such as 'self' or 'cls', is reassigned in a method.
|
||||
In most cases imaginable, there's no point in such reassignment, and it indicates an error.
|
||||
</body></html>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<html>
|
||||
<body>
|
||||
This inspection looks for certain decorators that don't nest well.
|
||||
This inspection looks for certain decorators that don't nest well.
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,5 +1,5 @@
|
||||
<html>
|
||||
<body>
|
||||
This inspection detects file contains non-ASCII characters and doesn't have an encoding declaration at the top.
|
||||
This inspection detects file contains non-ASCII characters and doesn't have an encoding declaration at the top.
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,5 +1,5 @@
|
||||
<html>
|
||||
<body>
|
||||
This inspection warns if a protected member is access outside the class or a descendant of the class where it's defined.
|
||||
This inspection warns if a protected member is access outside the class or a descendant of the class where it's defined.
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user