File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Pylint Secure Coding Standard Plugin
2
2
3
- ![ PyPI - Python Version] ( https://img.shields.io/pypi/pyversions/pylint-secure-coding-standard?label=Python ) [ ![ PyPI version] ( https://badge.fury.io/py/pylint-secure-coding-standard.svg )] ( https://badge.fury.io/py/pylint-secure-coding-standard ) [ ![ CI Build] ( https://github.com/Takishima/pylint-secure-coding-standard/actions/workflows/ci.yml/badge.svg )] ( https://github.com/Takishima/pylint-secure-coding-standard/actions/workflows/ci.yml ) [ ![ CodeQL] ( https://github.com/Takishima/pylint-secure-coding-standard/actions/workflows/codeql-analysis.yml/badge.svg )] ( https://github.com/Takishima/pylint-secure-coding-standard/actions/workflows/codeql-analysis.yml ) [ ![ pre-commit.ci status] ( https://results.pre-commit.ci/badge/github/Takishima/pylint-secure-coding-standard/main.svg )] ( https://results.pre-commit.ci/latest/github/Takishima/pylint-secure-coding-standard/main )
3
+  [](https://badge.fury.io/py/pylint-secure-coding-standard) [](https://github.com/Takishima/pylint-secure-coding-standard/actions/workflows/ci.yml) [](https://github.com/Takishima/pylint-secure-coding-standard/actions/workflows/codeql-analysis.yml) [](https://results.pre-commit.ci/latest/github/Takishima/pylint-secure-coding-standard/main) [](https://coveralls.io/github/Takishima/pylint-secure-coding-standard?branch=main)
4
4
5
5
6
6
pylint plugin that enforces some secure coding standards.
@@ -17,7 +17,7 @@ pylint plugin that enforces some secure coding standards.
17
17
| E8001 | Avoid using ` exec() ` and ` eval() ` |
18
18
| E8002 | Avoid using ` os.sytem() ` |
19
19
| E8003 | Avoid using ` shell=True ` when calling ` subprocess ` functions |
20
- | R8004 | Avoid using ` tempfile.mktemp() ` , prefer ` tempfile.mkstemp() ` instead |
20
+ | R8004 | Avoid using ` tempfile.mktemp() ` , prefer ` tempfile.mkstemp() ` instead |
21
21
| E8005 | Avoid using unsafe PyYAML loading functions |
22
22
| E8006 | Avoid using ` jsonpickle.decode() ` |
23
23
| C8007 | Avoid debug statement in production code |
Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ def visit_assert(self, node):
245
245
self .add_message ('avoid-assert' , node = node )
246
246
247
247
248
- def register (linter ):
248
+ def register (linter ): # pragma: no cover
249
249
"""
250
250
Function to register the plugin to Pylint
251
251
"""
You can’t perform that action at this time.
0 commit comments