forked from victorporof/Sublime-JSHint
-
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.
Search for `.jshintignore` files in parent directories and evaluate ignore patterns by utilizing the python pathspec library This resolves victorporof#59 and resolves victorporof#113
- Loading branch information
Showing
20 changed files
with
2,003 additions
and
0 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,34 @@ | ||
# Compiled python files. | ||
*.py[cod] | ||
|
||
# C extensions. | ||
*.so | ||
|
||
# Packages. | ||
*.egg | ||
*.egg-info | ||
dist | ||
build | ||
eggs | ||
parts | ||
bin | ||
var | ||
sdist | ||
develop-eggs | ||
.installed.cfg | ||
lib | ||
lib64 | ||
__pycache__ | ||
/MANIFEST | ||
.tox | ||
|
||
# Installer logs. | ||
pip-log.txt | ||
|
||
# Temporary files. | ||
*~ | ||
*.swp | ||
|
||
# Hidden files. | ||
.* | ||
!.gitignore |
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,61 @@ | ||
|
||
Change History | ||
============== | ||
|
||
|
||
0.3.4 (2015-08-24) | ||
------------------ | ||
|
||
- Issue #7: Fixed non-recursive links. | ||
- Issue #8: Fixed edge cases in gitignore patterns. | ||
- Issue #9: Fixed minor usage documentation. | ||
- Fixed recursion detection. | ||
- Fixed trivial incompatibility with Python 3.2. | ||
|
||
|
||
0.3.3 (2014-11-21) | ||
------------------ | ||
|
||
- Improved documentation. | ||
|
||
|
||
0.3.2 (2014-11-08) | ||
------------------ | ||
|
||
- Improved documentation. | ||
- Issue #6: Fixed matching Windows paths. | ||
- API change: `spec.match_tree` and `spec.match_files` now return iterators instead of sets | ||
|
||
|
||
0.3.1 (2014-09-17) | ||
------------------ | ||
|
||
- Updated README. | ||
|
||
|
||
0.3.0 (2014-09-17) | ||
------------------ | ||
|
||
- Added registered patterns. | ||
- Issue #3: Fixed trailing slash in gitignore patterns. | ||
- Issue #4: Fixed test for trailing slash in gitignore patterns. | ||
|
||
|
||
0.2.2 (2013-12-17) | ||
------------------ | ||
|
||
- Fixed setup.py | ||
|
||
|
||
0.2.1 (2013-12-17) | ||
------------------ | ||
|
||
- Added tests. | ||
- Fixed comment gitignore patterns. | ||
- Fixed relative path gitignore patterns. | ||
|
||
|
||
0.2.0 (2013-12-07) | ||
------------------ | ||
|
||
- Initial release. |
Oops, something went wrong.