-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8de4956
commit e3add39
Showing
7 changed files
with
114 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
Metadata-Version: 2.1 | ||
Name: lintcheck | ||
Version: 0.1.0 | ||
Summary: Pylint extension for IDLE | ||
Home-page: https://github.com/CoolCat467/lintcheck | ||
Author: CoolCat467 | ||
License: UNKNOWN | ||
Project-URL: Bug Reports, https://github.com/CoolCat467/lintcheck/issues | ||
Project-URL: Source, https://github.com/CoolCat467/lintcheck | ||
Keywords: pylint,idle,extension,development | ||
Platform: UNKNOWN | ||
Classifier: Development Status :: 3 - Alpha | ||
Classifier: Intended Audience :: Developers | ||
Classifier: Topic :: Software Development :: Build Tools | ||
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3) | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: Programming Language :: Python :: 3.6 | ||
Classifier: Programming Language :: Python :: 3.7 | ||
Classifier: Programming Language :: Python :: 3.8 | ||
Classifier: Programming Language :: Python :: 3.9 | ||
Classifier: Programming Language :: Python :: 3 :: Only | ||
Requires-Python: >=3.6, <4 | ||
Description-Content-Type: text/markdown | ||
License-File: LICENSE | ||
|
||
# LintCheck | ||
Python IDLE extension to preform pylint analysis on an open file | ||
|
||
## Installation | ||
1) Go to terminal and install with `pip install lintcheck`. | ||
2) Run command `lintcheck`. You will likely see a message saying | ||
`lintcheck not in system registered extensions!`. Run the command | ||
given to add lintcheck to your system's IDLE extension config file. | ||
3) Again run command `lintcheck`. This time, you should see the following | ||
output: `Config should be good!`. | ||
4) Open IDLE, go to `Options` -> `Configure IDLE` -> `Extensions`. | ||
If everything went well, alongside `ZzDummy` there should be and | ||
option called `lintcheck`. This is where you can configure how | ||
lintcheck works. | ||
|
||
### Information on options | ||
Option `ignore` is a list of pylint messages, | ||
seperated by semicolons (;) that should be disabled using `--disable`. | ||
See `pylint --help` for more information. | ||
|
||
Option `jobs` is the number of processes pylint should use when | ||
checking your code, using `--jobs`. See `pylint --help` for more information. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
LICENSE | ||
README.md | ||
setup.cfg | ||
setup.py | ||
src/lintcheck/__init__.py | ||
src/lintcheck.egg-info/PKG-INFO | ||
src/lintcheck.egg-info/SOURCES.txt | ||
src/lintcheck.egg-info/dependency_links.txt | ||
src/lintcheck.egg-info/entry_points.txt | ||
src/lintcheck.egg-info/requires.txt | ||
src/lintcheck.egg-info/top_level.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[console_scripts] | ||
lintcheck = lintcheck:check_installed | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
lintcheck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters