https://github.com/chdsbd/fixit-example
https://github.com/chdsbd/fixit-example
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/chdsbd/fixit-example
- Owner: chdsbd
- Created: 2020-09-19T01:17:09.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-19T01:17:38.000Z (almost 6 years ago)
- Last Synced: 2025-01-02T01:17:24.309Z (over 1 year ago)
- Language: Python
- Size: 3.91 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# fixit example
```
# clone repository
git clone git@github.com:chdsbd/fixit-example.git && cd fixit-example
# install fixit
poetry install
# run fixit
poetry run python3 -m fixit.cli.run_rules
# verify error
```
Running fixit returns the following output. There is an unexplained exception, a mention of running pyre, and a flake8 error.
```
poetry run python3 -m fixit.cli.run_rules
Scanning 1 files
Testing 21 rules
Encountered exception for the following paths:
./main.py
Running `pyre start` may solve the issue.
main.py:4:1
E305: expected 2 blank lines after class or function definition, found 1
Found 1 reports in 1 files in 0.33 seconds.
```