diff --git a/njsscan/__init__.py b/njsscan/__init__.py index 57a8523..038c7bd 100644 --- a/njsscan/__init__.py +++ b/njsscan/__init__.py @@ -6,7 +6,7 @@ __title__ = 'njsscan' __authors__ = 'Ajin Abraham' __copyright__ = f'Copyright {datetime.now().year} Ajin Abraham, OpenSecurity' -__version__ = '0.3.4' +__version__ = '0.3.5' __version_info__ = tuple(int(i) for i in __version__.split('.')) __all__ = [ '__title__', diff --git a/setup.py b/setup.py index 78473df..f9a4fbc 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ def get_version(rel_path): long_description_content_type='text/markdown', install_requires=[ 'colorama>=0.4.5', - 'libsast>=1.5.2', + 'libsast>=1.5.3', 'sarif-om>=1.0.4', 'jschema-to-python>=1.2.3', 'tabulate>=0.8.10', diff --git a/tox.ini b/tox.ini index eb583e1..d66b174 100644 --- a/tox.ini +++ b/tox.ini @@ -78,13 +78,22 @@ exclude = dist venv ignore = - D101 ; Missing docstring in public class - D103 ; Missing docstring in public function - D104 ; Missing docstring - D107 ; docstring is not mandatory - D401 ; Allow non imperative mood - Q003 ; Allow only ' for strings - I100 ; Use python sort imports - SF01 ; Allow Private member access - R701 ; Function too complex + D101, + # Missing docstring in public class + D103, + # Missing docstring in public function + D104, + # Missing docstring + D107, + # docstring is not mandatory + D401, + # Allow non imperative mood + Q003, + # Allow only ' for strings + I100, + # Use python sort imports + SF01, + # Allow Private member access + R701, + # Function too complex radon_max_cc = 10