forked from apache/airflow
-
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.
[AIRFLOW-2783][Airflow 2783] Implement eslint for JS code check
Closes apache#3641 from verdan/AIRFLOW-2783-eslint
- Loading branch information
1 parent
10b6ca5
commit 604ea1d
Showing
7 changed files
with
1,326 additions
and
30 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,8 @@ | |
.coverage | ||
.coveragerc | ||
.codecov.yml | ||
.eslintrc | ||
.eslintignore | ||
.rat-excludes | ||
requirements.txt | ||
.*log | ||
|
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,8 @@ | ||
**/*{.,-}min.js | ||
**/*.sh | ||
**/*.py | ||
gantt-chart-d3v2.js | ||
jqClock.min.js | ||
coverage/** | ||
static/dist/* | ||
static/docs/* |
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,5 @@ | ||
{ | ||
"extends": "airbnb-base", | ||
"parser": "babel-eslint", | ||
"plugins": [ "html" ] | ||
} |
Oops, something went wrong.