This repository has been archived by the owner on May 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add option to run linter on complete directory
- Loading branch information
lgulich
committed
Jun 16, 2020
1 parent
eed750b
commit f0242b1
Showing
6 changed files
with
140 additions
and
90 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
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -9,19 +9,20 @@ | |
|
||
setuptools.setup( | ||
name="lg-linter", | ||
version="v0.1.10", | ||
version="v0.1.11", | ||
author="Lionel Gulich", | ||
author_email="[email protected]", | ||
url="https://github.com/lgulich/lg-linter", | ||
description="A pre commit linter for cpp, python and sh.", | ||
long_description=LONG_DESCRIPTION, | ||
long_description_content_type="text/markdown", | ||
download_url="https://github.com/lgulich/lg-linter/archive/v0.1.8.tar.gz", | ||
download_url="https://github.com/lgulich/lg-linter/archive/v0.1.11.tar.gz", | ||
install_requires=[ | ||
'dataclasses', | ||
'gitpython', | ||
'lg-cpplint', | ||
'pylint', | ||
'yapf', | ||
'lg-cpplint', | ||
], | ||
classifiers=[ | ||
"Programming Language :: Python :: 3 :: Only", | ||
|