Metadata-Version: 2.1
Name: jay_lint
Version: 0.0.1
Summary: Jay Choy's personal linter
License: MIT
Author: Jay Choy
Author-email: choyzhengjay@gmail.com
Requires-Python: ==3.12.4
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown

# jay_lint
[![Build and Test](https://github.com/ZJay07/jay_lint/actions/workflows/unittest_feature.yml/badge.svg)](https://github.com/ZJay07/jay_lint/actions/workflows/unittest_feature.yml)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

This is my attempt in making my own linter using [Please](https://github.com/thought-machine/please) from Thought Machine and the python [ast](https://docs.python.org/3/library/ast.html) library

# To install, on the root directory run:
```bash
pip install .
```

# How to use?
After installing, simply run `jays-linter` followed by your file name.
eg:
```bash
jays-linter <test.py>
```

# How to use 'fix'?
Same as before, just add `--fix` after the file name
eg:
```bash
jays-linter --fix <test.py>
```

