Metadata-Version: 2.1
Name: krllint
Version: 0.1.2
Summary: KRL code checker
Home-page: https://github.com/d4nuu8/krllint
Author: Daniel Braunwarth
Author-email: d4nuu8@gmail.com
License: MIT
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

# 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
```

