Metadata-Version: 2.1
Name: flake8-ensure-ascii
Version: 1.0.0
Summary: Flake8 Ensure ASCII encoding plugin.
Home-page: https://github.com/j0k2r/flake8-ensure-ascii
Author: Hamza Z.
Author-email: 16209548+j0k2r@users.noreply.github.com
License: MIT
Description: # flake8-ensure-ascii
        
        Ensure that python code files does not contains UTF-8 or
        other fancy char encoding.
        
        This module provides a plugin for `flake8`, the Python code checker.
        
        ## Installation
        
        Install with pip:
        
        ```bash
        pip install flake8-ensure-ascii
        ```
        
        The plugin officially supports Python `>= 3.6` and `flake8 >= 3.7`.
        You may find other Python 3 versions work as well.
        
        ## Usage
        
        The plugin finds non ASCII chars you may not want to commit:
        
        ```python
        def my_function():
            print("It works 😋")
        ```
        
        ```log
        ./my_file.py:2:21: ENC100 Non ASCII encoding found
        ```
        
        ## Changelog
        
        ### 1.0.0
        
        #### Breaking changes
        
        Initial commit !
        
Keywords: flake8 plugin encoding ascii
Platform: UNKNOWN
Classifier: Framework :: Flake8
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 5 - Production/Stable
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Quality Assurance
Description-Content-Type: text/markdown
Provides-Extra: dev
