File tree 6 files changed +31
-6
lines changed
6 files changed +31
-6
lines changed Original file line number Diff line number Diff line change 1
- You can help us make the doc better `by contributing <https://github.com/pylint-dev/pylint/issues/5953 >`_ !
1
+ One of your pylint plugins cannot be loaded. There's nothing to change in
2
+ your code, but your pylint configuration or installation has an issue.
3
+
4
+ For example, there might be a typo. The following config::
5
+
6
+ [MAIN]
7
+ load-plugins = pylint.extensions.bad_biultin
8
+
9
+ Should be::
10
+
11
+ [MAIN]
12
+ load-plugins = pylint.extensions.bad_builtin
13
+
14
+ Or the plugin you added is not importable in your environment.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- You can help us make the doc better `by contributing <https://github.com/pylint-dev/pylint/issues/5953 >`_ !
1
+ This warns you that a builtin module was impossible to analyse (an ast node is not pure python).
2
+ There's nothing to change in your code, this is a warning about astroid and pylint's limitations.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- You can help us make the doc better `by contributing <https://github.com/pylint-dev/pylint/issues/5953 >`_ !
1
+ One of your options is not recognized. There's nothing to change in
2
+ your code, but your pylint configuration or the way you launch
3
+ pylint needs to be modified.
4
+
5
+ For example you might be launching pylint with the following ``toml `` configuration::
6
+
7
+ [tool.pylint]
8
+ jars = "10"
9
+
10
+ When the following should be used::
11
+
12
+ [tool.pylint]
13
+ jobs = "10"
14
+
15
+ This warning was released in pylint 2.14: bad options were silently failing before.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments