Skip to content

Commit

Permalink
v0.0.1 - Add alignment side option
Browse files Browse the repository at this point in the history
  • Loading branch information
CoolCat467 committed Oct 2, 2022
1 parent 3f4b753 commit c791d5d
Show file tree
Hide file tree
Showing 3 changed files with 264 additions and 181 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

here = pathlib.Path(__file__).parent.resolve()

version = '0.0.0'
version = '0.0.1'
# Get the long description from the README file
long_description = (here / 'README.md').read_text(encoding='utf-8')
install_requires = []
Expand Down
27 changes: 9 additions & 18 deletions src/idlealign.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
Expand Up @@ -12,34 +12,25 @@ 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.10
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.6, <4
Requires-Python: >=3.8, <4
Description-Content-Type: text/markdown
License-File: LICENSE

# IDLEAlign
Python IDLE extension to align code by text
Python IDLE extension to align code by a regular expression

## Installation
1) Go to terminal and install with `pip install typecheck`.
2) Run command `typecheck`. You will likely see a message saying
`typecheck not in system registered extensions!`. Run the command
1) Go to terminal and install with `pip install idlealign`.
2) Run command `idlealign`. You will likely see a message saying
`idlealign not in system registered extensions!`. Run the command
given to add lintcheck to your system's IDLE extension config file.
3) Again run command `typecheck`. This time, you should see the following
3) Again run command `idlealign`. 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 `typecheck`. 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.
option called `idlealign`. This is where you can configure if
idlealign is enabled or not.
Loading

0 comments on commit c791d5d

Please sign in to comment.