Metadata-Version: 2.1
Name: flake8-unused-arguments
Version: 0.0.7
Summary: flake8 extension to warn on unused function arguments
Home-page: https://github.com/nhoad/flake8-unused-arguments
Author: Nathan Hoad
Author-email: nathan@hoad.io
License: MIT
Description: # flake8-unused-arguments
        
        A flake8 plugin that checks for unused function arguments.
        
        This package adds the following warnings:
        
         - `U100` - An unused argument.
         - `U101` - An unused argument starting with an underscore
        
        Configuration options also exist:
         - `unused-arguments-ignore-abstract-functions` - don't show warnings for abstract functions.
         - `unused-arguments-ignore-stub-functions` - don't show warnings for empty functions.
         - `unused-arguments-ignore-variadic-names` - don't show warnings for unused *args and **kwargs.
        
        
        ## Changelog
        
        0.0.7
         - The first unused argument in a @classmethod decorated function wasn't properly detected. Thanks to Sebastian Dietrich for contributing the fix!
        
        0.0.6
         - Stub functions that have docstrings are now correctly detected as stub functions
         - Functions with only a docstring are considered stub functions
        
        0.0.5
         - The positions reported are now for the arguments themselves, rather than the function
        
        0.0.4
         - Wrong project name in the readme, whoopsies
        
        0.0.3
         - treat functions that start with "raise NotImplementedError()" as stub functions
        
        0.0.2
         - fixed error in packaging
        
        0.0.1
         - initial release
        
Platform: UNKNOWN
Classifier: Framework :: Flake8
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Quality Assurance
Description-Content-Type: text/markdown
