-
Notifications
You must be signed in to change notification settings - Fork 30.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "tools: update closure_linter to the latest(2.3.5)"
This reverts commit 6d98524. This reverts commit 60ff789. closure_linter now depends on the gflags module and not everyone will have that installed by default.
- Loading branch information
1 parent
e7e34dd
commit 2d0011f
Showing
42 changed files
with
3,460 additions
and
3,207 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Metadata-Version: 1.0 | ||
Name: closure-linter | ||
Version: 2.2.6 | ||
Summary: Closure Linter | ||
Home-page: http://code.google.com/p/closure-linter | ||
Author: The Closure Linter Authors | ||
Author-email: [email protected] | ||
License: Apache | ||
Description: UNKNOWN | ||
Platform: UNKNOWN |
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,41 @@ | ||
README | ||
setup.py | ||
closure_linter/__init__.py | ||
closure_linter/checker.py | ||
closure_linter/checkerbase.py | ||
closure_linter/ecmalintrules.py | ||
closure_linter/ecmametadatapass.py | ||
closure_linter/error_fixer.py | ||
closure_linter/errorrules.py | ||
closure_linter/errors.py | ||
closure_linter/fixjsstyle.py | ||
closure_linter/fixjsstyle_test.py | ||
closure_linter/full_test.py | ||
closure_linter/gjslint.py | ||
closure_linter/indentation.py | ||
closure_linter/javascriptlintrules.py | ||
closure_linter/javascriptstatetracker.py | ||
closure_linter/javascriptstatetracker_test.py | ||
closure_linter/javascripttokenizer.py | ||
closure_linter/javascripttokens.py | ||
closure_linter/statetracker.py | ||
closure_linter/tokenutil.py | ||
closure_linter.egg-info/PKG-INFO | ||
closure_linter.egg-info/SOURCES.txt | ||
closure_linter.egg-info/dependency_links.txt | ||
closure_linter.egg-info/entry_points.txt | ||
closure_linter.egg-info/requires.txt | ||
closure_linter.egg-info/top_level.txt | ||
closure_linter/common/__init__.py | ||
closure_linter/common/error.py | ||
closure_linter/common/erroraccumulator.py | ||
closure_linter/common/errorhandler.py | ||
closure_linter/common/errorprinter.py | ||
closure_linter/common/filetestcase.py | ||
closure_linter/common/htmlutil.py | ||
closure_linter/common/lintrunner.py | ||
closure_linter/common/matcher.py | ||
closure_linter/common/position.py | ||
closure_linter/common/simplefileflags.py | ||
closure_linter/common/tokenizer.py | ||
closure_linter/common/tokens.py |
1 change: 1 addition & 0 deletions
1
tools/closure_linter/closure_linter.egg-info/dependency_links.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 @@ | ||
|
4 changes: 4 additions & 0 deletions
4
tools/closure_linter/closure_linter.egg-info/entry_points.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,4 @@ | ||
[console_scripts] | ||
fixjsstyle = closure_linter.fixjsstyle:main | ||
gjslint = closure_linter.gjslint:main | ||
|
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 @@ | ||
python-gflags |
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 @@ | ||
closure_linter |
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 |
---|---|---|
@@ -1,16 +1 @@ | ||
#!/usr/bin/env python | ||
# Copyright 2008 The Closure Linter Authors. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS-IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
"""Package indicator for gjslint.""" |
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
Oops, something went wrong.