Skip to content

Commit 2742ee8

Browse files
committed
organize files
1 parent 81e1e20 commit 2742ee8

20 files changed

+27
-202
lines changed

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# PyLInt
1+
# python-lint-annotate
22

3-
One-stop, zero-configuration GitHub Action for linting and enforcing style in Python projects.
3+
Zero-configuration GitHub Action to maintain code quality with push and PR annotations.
44

55
![Screenshot of annotations](static/annotations.png)
66

@@ -100,12 +100,15 @@ jobs:
100100
conda-python-version: "3.8"
101101
```
102102

103-
104-
105103
## License
106104

107105
The scripts and documentation in this project are released under the [MIT License](LICENSE)
108106

109107
## Contributions
110108

111-
Contributions are welcome through PRs.
109+
Contributions are welcome through PRs.
110+
111+
## TODO
112+
113+
Wait until this is resolved: [PR646](https://github.com/actions/runner/issues/646)
114+
so we can implement better python version contro

entrypoint.sh

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -23,24 +23,25 @@
2323
# for docker
2424
#cp /*.json .
2525

26-
echo $1
27-
echo $2
28-
echo $3
29-
echo $4
30-
echo $5
31-
echo $6
32-
echo $7
33-
echo $8
34-
echo $9
35-
echo $11
36-
echo $12
37-
echo $13
38-
echo $14
39-
echo $15
40-
echo $16
41-
echo $17
42-
43-
for matcher in ./*.json
26+
echo python-root-list: $1
27+
echo use-pylint: $2
28+
echo use-pycodestyle: $3
29+
echo use-flake8: $4
30+
echo use-black: $5
31+
echo use-mypy: $6
32+
echo use-isort: $7
33+
echo use-vulture: $8
34+
echo extra-pylint-options: $9
35+
echo extra-pydocstyle-options: $10
36+
echo extra-pycodestyle-options: $11
37+
echo extra-flake8-options: $12
38+
echo extra-black-options: $13
39+
echo extra-mypy-options: $14
40+
echo extra-isort-options: $15
41+
echo extra-vulture-options: $16
42+
echo extra-pydocstyle-options: $17
43+
44+
for matcher in ./matchers/*.json
4445
do
4546
echo adding matcher $matcher
4647
echo "::add-matcher::${matcher}"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)