Skip to content

Commit 833b8fa

Browse files
committed
add new pylint article
1 parent 996e4d2 commit 833b8fa

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

content/pages/04-web-development/39-code-metrics.markdown

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,16 @@ diminishing returns.
128128
* [How to use Flask8](https://simpleisbetterthancomplex.com/packages/2016/08/05/flake8.html)
129129
explains what Flask8 is, its usage and expected output.
130130

131+
* [Pylint false positives](https://lukeplant.me.uk/blog/posts/pylint-false-positives/)
132+
is a walkthrough of issues that Pylint detects in an example project,
133+
which ones cannot be fixed and the ones where the tool was incorrect.
134+
The author concludes that with all of the false positives that were
135+
found the signal to noise ratio was not useful enough to use the
136+
tool on a typical project. However, on a brand new project without
137+
many dependencies it might be helpful to keep your code in a pristine
138+
state before the code base grows beyond the nosiness false positives
139+
threshold.
140+
131141
* [What is Flake8 and why we should use it?](https://medium.com/python-pandemonium/what-is-flake8-and-why-we-should-use-it-b89bd78073f2)
132142
covers why using a linting tool like Flake8 can improve the quality of
133143
your Python code and how to install and configure it for your

0 commit comments

Comments
 (0)