Metadata-Version: 2.1
Name: krllint
Version: 0.1.8
Summary: KRL code checker
Home-page: https://github.com/d4nuu8/krllint
Author: Daniel Braunwarth
Author-email: d4nuu8@gmail.com
License: MIT
Description: # krllint
        krllint checks and automatically fixes KRL (KUKA Robot Language) code.
        
        ## Installation
        Youe can download ```krllint.py``` either from github or with this command:
        ```bash
        $ pip install krllint
        ```
        
        ### Exmaple usage
        Show help:
        ```bash
        $ krllint --help
        ```
        
        Check files or folders:
        ```bash
        $ krllint example.src
        $ krllint example.src furhter_example.src
        $ krllint source_dir
        ```
        
        Automatically fix code:
        ```bash
        $ krllint --fix example.src
        ```
        
        Create a configuration file at the current working directory:
        ```bash
        $ krllint --generate-config
        ```
        
        krllint tries to load configuration files with the following sequence:
        ```krllint.conf.py```:
        1. Explicitly defined as argument
        2. Current working directory
        3. ```~/.config/```
        4. Default configuration of krllint
        
        Explicitly loading of a configuration file:
        ```bash
        $ krllint --config krllint.config.py
        ```
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.5
Requires-Python: >=3.5
Description-Content-Type: text/markdown
