File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11# Pylint Secure Coding Standard Plugin
22
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)
44
55
66pylint plugin that enforces some secure coding standards.
@@ -17,7 +17,7 @@ pylint plugin that enforces some secure coding standards.
1717| E8001 | Avoid using ` exec() ` and ` eval() ` |
1818| E8002 | Avoid using ` os.sytem() ` |
1919| 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 |
2121| E8005 | Avoid using unsafe PyYAML loading functions |
2222| E8006 | Avoid using ` jsonpickle.decode() ` |
2323| 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):
245245 self .add_message ('avoid-assert' , node = node )
246246
247247
248- def register (linter ):
248+ def register (linter ): # pragma: no cover
249249 """
250250 Function to register the plugin to Pylint
251251 """
You can’t perform that action at this time.
0 commit comments