-
Notifications
You must be signed in to change notification settings - Fork 533
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add tools to check ASF headers in code files. #454
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
0bcfab3
add tools to check ASF headers in code files
Firstsawyou 9107b1c
add tools to check ASF headers in code files
Firstsawyou 5b2290e
add tools to check ASF headers in code files
Firstsawyou 769c870
Delete the useless configuration of "ASF-Release.cfg" file and rename…
Firstsawyou 5aa3de2
Delete the useless configuration of "ASF-Release.cfg" file and rename…
Firstsawyou 9983132
add check ASF headers rule for .tsx,.ts and .less files
Firstsawyou dabaae0
Fix the error message of "make license-check".
Firstsawyou f71b9a3
Fix the error message of "make license-check".
Firstsawyou dc42c7a
Fix the error message of "make license-check".
Firstsawyou File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,105 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one or more contributor | ||
# license agreements; and to You under the Apache License, Version 2.0. | ||
|
||
# scanCode.py configuration file | ||
|
||
# List of filenames containing the text of valid license (headers) | ||
# These files SHOULD be in the same directory path where scanCode.py | ||
# resides. | ||
[Licenses] | ||
ASFLicenseHeader.txt | ||
ASFLicenseHeaderBash.txt | ||
ASFLicenseHeaderMarkdown.txt | ||
ASFLicenseHeaderLua.txt | ||
|
||
# Filters (path/filename) with wildcards and associated scan checks | ||
# that are to be run against them. The checks are actual valid | ||
# function names found in scanCode.py. | ||
[Includes] | ||
*=is_not_symlink, regex_check | ||
*.conf=has_block_license, eol_at_eof, regex_check | ||
*.go=has_block_license, eol_at_eof, regex_check | ||
*.gradle=has_block_license, eol_at_eof, regex_check | ||
*.groovy=has_block_license, eol_at_eof, regex_check | ||
*.html=has_block_license, regex_check | ||
*.java=no_tabs, has_block_license, eol_at_eof, regex_check | ||
*.js=has_block_license, regex_check | ||
*.md=no_tabs, has_block_license, eol_at_eof, regex_check | ||
*.properties=no_tabs, has_block_license, eol_at_eof, regex_check | ||
*.py=no_tabs, has_block_license, eol_at_eof, regex_check | ||
*.scala=has_block_license, no_tabs, eol_at_eof, regex_check | ||
*.sh=has_block_license, eol_at_eof, regex_check | ||
*.swift=no_tabs, has_block_license, eol_at_eof, regex_check | ||
*.yaml=has_block_license, eol_at_eof, regex_check | ||
*.yml=has_block_license, eol_at_eof, regex_check | ||
*.css=has_block_license, regex_check | ||
*.tsx=has_block_license, regex_check | ||
*.ts=has_block_license, regex_check | ||
*.less=has_block_license, regex_check | ||
*Dockerfile*=has_block_license | ||
|
||
# Sanity check files not required to have ASF headers because either they | ||
# are excluded or are not packaged with the Apache source release. | ||
*.cfg=regex_check | ||
*.ini=regex_check | ||
*.j2=regex_check | ||
*.json=regex_check | ||
*.txt=regex_check | ||
*.xml=regex_check | ||
|
||
# List of paths (inclusive of subdirectories) to exclude from code scanning | ||
[Excludes] | ||
|
||
# General tooling & binary file exclusions | ||
.bin | ||
.dockerignore | ||
.eslintrc.* | ||
.git | ||
.gitattributes | ||
.github | ||
.gitignore | ||
.gradle | ||
.idea | ||
.jshintrc | ||
.pydevproject | ||
.rat-excludes | ||
.tox | ||
|
||
# Skip files containing MIT License | ||
scripts/verifyCommit.js | ||
src/components/HeaderDropdown/index.less | ||
src/components/HeaderDropdown/index.tsx | ||
src/components/NoticeIcon | ||
src/components/PageLoading/index.tsx | ||
src/components/RightContent | ||
src/e2e/__mocks__/antd-pro-merge-less.js | ||
src/e2e/baseLayout.e2e.js | ||
src/pages/404.tsx | ||
src/service-worker.js | ||
compose/dashboard_conf/nginx.conf | ||
docker/nginx.conf | ||
|
||
# The README.md file cannot be found, but it will be detected | ||
dag-to-lua-1.1/README.md | ||
|
||
api/build.sh | ||
|
||
|
||
# Exclude Apache standard legal files | ||
CREDITS.txt | ||
DISCLAIMER.txt | ||
LICENSE*.txt | ||
NOTICE.txt | ||
|
||
conf | ||
.actions/openwhisk-utilities | ||
|
||
[Options] | ||
# Not all code files allow licenses to appear starting at the first character | ||
# of the file. This option tells the scan to allow licenses to appear starting | ||
# within the first 'x' characters of each code file (as provided by this option's | ||
# value). | ||
LICENSE_SLACK_LENGTH=500 | ||
|
||
# List of regular expressions for forbidden strings, e.g. \w+@company.com | ||
[Regex] |
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,18 @@ | ||
<!-- | ||
# | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You 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. | ||
# | ||
--> |
Submodule openwhisk-utilities
added at
8636f9
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 |
---|---|---|
|
@@ -74,3 +74,7 @@ jobs: | |
working-directory: ./api | ||
run: | | ||
go test ./... | ||
|
||
- name: run Makefile | ||
run: | | ||
make license-check |
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,25 @@ | ||
# | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You 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. | ||
# | ||
|
||
### license-check: Check apisix-dashboard source code for Apache License | ||
.PHONY: license-check | ||
license-check: | ||
ifeq ("$(wildcard .actions/openwhisk-utilities/scancode/scanCode.py)", "") | ||
git clone https://github.com/apache/openwhisk-utilities.git .actions/openwhisk-utilities | ||
cp .actions/ASF* .actions/openwhisk-utilities/scancode/ | ||
endif | ||
.actions/openwhisk-utilities/scancode/scanCode.py --config .actions/ASF-Release.cfg ./ |
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 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 |
---|---|---|
|
@@ -22,4 +22,4 @@ datasources: | |
org_id: 1 | ||
type: 'prometheus' | ||
url: 'http://prometheus:9090' | ||
version: 1 | ||
version: 1 |
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 |
---|---|---|
|
@@ -61,4 +61,4 @@ const Step1: React.FC<Props> = ({ form, disabled }) => { | |
); | ||
}; | ||
|
||
export default Step1; | ||
export default Step1; |
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 |
---|---|---|
@@ -1,2 +1,19 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You 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. | ||
*/ | ||
|
||
export { default as UserZhCN } from './locales/zh-CN'; | ||
export { default as UserEnUS } from './locales/en-US'; |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we need add rule for
.tsx
files.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok.