forked from apache/apisix-dashboard
-
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.
add tools to check ASF headers in code files. (apache#454)
- Loading branch information
1 parent
e8b0cb2
commit 8ff2080
Showing
19 changed files
with
326 additions
and
4 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 |
---|---|---|
@@ -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