Skip to content

Commit 715e673

Browse files
targosevanlucas
authored andcommitted
tools: add babel-eslint
Create tools/update-babel-eslint.sh script and execute it to do the first installation of the package. Update tools/license-builder.sh and execute it to add babel-eslint's license to our LICENSE file. PR-URL: #17820 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]>
1 parent d349fca commit 715e673

File tree

1,318 files changed

+93356
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,318 files changed

+93356
-0
lines changed

LICENSE

+26
Original file line numberDiff line numberDiff line change
@@ -1061,6 +1061,32 @@ The externally maintained libraries used by Node.js are:
10611061
THE SOFTWARE.
10621062
"""
10631063

1064+
- babel-eslint, located at tools/node_modules/babel-eslint, is licensed as follows:
1065+
"""
1066+
Copyright (c) 2014-2016 Sebastian McKenzie <[email protected]>
1067+
1068+
MIT License
1069+
1070+
Permission is hereby granted, free of charge, to any person obtaining
1071+
a copy of this software and associated documentation files (the
1072+
"Software"), to deal in the Software without restriction, including
1073+
without limitation the rights to use, copy, modify, merge, publish,
1074+
distribute, sublicense, and/or sell copies of the Software, and to
1075+
permit persons to whom the Software is furnished to do so, subject to
1076+
the following conditions:
1077+
1078+
The above copyright notice and this permission notice shall be
1079+
included in all copies or substantial portions of the Software.
1080+
1081+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1082+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1083+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1084+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1085+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1086+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1087+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1088+
"""
1089+
10641090
- gtest, located at deps/gtest, is licensed as follows:
10651091
"""
10661092
Copyright 2008, Google Inc.

tools/license-builder.sh

+1
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ addlicense "marked" "tools/doc/node_modules/marked" \
7777
addlicense "cpplint.py" "tools/cpplint.py" \
7878
"$(sed -e '/^$/,$d' -e 's/^#$//' -e 's/^# //' ${rootdir}/tools/cpplint.py | tail -n +3)"
7979
addlicense "ESLint" "tools/node_modules/eslint" "$(cat ${rootdir}/tools/node_modules/eslint/LICENSE)"
80+
addlicense "babel-eslint" "tools/node_modules/babel-eslint" "$(cat ${rootdir}/tools/node_modules/babel-eslint/LICENSE)"
8081
addlicense "gtest" "deps/gtest" "$(cat ${rootdir}/deps/gtest/LICENSE)"
8182

8283
# nghttp2

tools/node_modules/babel-eslint/LICENSE

+22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/node_modules/babel-eslint/README.md

+102
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)