-
Notifications
You must be signed in to change notification settings - Fork 405
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #823 from nklincoln/repolinter
Add repolinter and core required files
- Loading branch information
Showing
11 changed files
with
75 additions
and
20 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 was deleted.
Oops, something went wrong.
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 @@ | ||
Code of Conduct Guidelines | ||
========================== | ||
|
||
Please review the Hyperledger [Code of | ||
Conduct](https://wiki.hyperledger.org/community/hyperledger-project-code-of-conduct) | ||
before participating. It is important that we keep things civil. | ||
|
||
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>. |
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,11 @@ | ||
Maintainers | ||
=========== | ||
|
||
| Name | GitHub | Chat | email | | ||
|---------------------------|------------------|----------------|-------------------------------------| | ||
| Attila Klenik | aklenik | klenik | | | ||
| FeihuJiang | feihujiang | FlyingTiger | | | ||
| HaojunZhou | haojun | haojun | | | ||
| Nick Lincoln | nklincoln | nkl199 | | | ||
|
||
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>. |
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 |
---|---|---|
@@ -0,0 +1,54 @@ | ||
{ | ||
"axioms": { | ||
"linguist":"language", | ||
"licensee":"license", | ||
"packagers":"packager" | ||
}, | ||
"rules": { | ||
"all": { | ||
"apache-license-file:file-contents": ["error", {"files": ["LICENSE*"], "content": "Apache License.*Version 2.0", "fail-on-non-existent": true}], | ||
"code-of-conduct-file:file-contents": ["error", {"files": ["CODE_OF_CONDUCT*"], "content": "https://wiki.hyperledger.org/community/hyperledger-project-code-of-conduct", "fail-on-non-existent": true}], | ||
"security-file-matches:file-contents": ["error", {"files": ["SECURITY.md"], "content": "https://wiki.hyperledger.org/display/SEC/Defect.Response", "fail-on-non-existent": true}], | ||
"readme-file-exists:file-existence": ["error", {"files": ["README.md", "README"]}], | ||
"readme-references-license:file-contents": ["error", {"files": ["README.md", "README"], "content": "license", "flags": "i"}], | ||
"maintainers-file-exists:file-existence": ["error", {"files": ["MAINTAINERS.md"]}], | ||
"contributing-file-exists:file-existence": ["error", {"files": ["CONTRIBUTING.md"]}], | ||
"changelog-file-exists:file-existence": ["error", {"files": ["CHANGELOG.md"]}], | ||
"test-directory-exists:directory-existence": ["error", {"directories": ["**/test*", "**/specs", "**/**_test.go"], "nocase": true}], | ||
"integrates-with-ci:file-existence": [ | ||
"error", | ||
{ | ||
"files": [ | ||
"circle.yml", | ||
".circleci/config.yml", | ||
"ci/azure-pipelines.yml", | ||
".ci/azure-pipelines.yml", | ||
"Jenkinsfile", | ||
"Jenkinsfile.ci", | ||
"Jenkinsfile.cd" | ||
] | ||
} | ||
], | ||
|
||
"notice-file-exists:file-existence": ["warning", {"files": ["NOTICE*"]}], | ||
"source-license-headers-exist:file-starts-with": ["warning", {"files": ["**/*.js", "!node_modules/**"], "lineCount": 5, "patterns": ["Copyright", "License"], "flags": "i"}], | ||
|
||
"binaries-not-present:file-type-exclusion": ["error", {"type": ["**/*.exe", "**/*.dll", "!node_modules/**"]}] | ||
}, | ||
"language=javascript": { | ||
"package-metadata-exists:file-existence": ["warning", {"files": ["package.json"]}] | ||
}, | ||
"language=ruby": { | ||
"package-metadata-exists:file-existence": ["warning", {"files": ["Gemfile"]}] | ||
}, | ||
"language=java": { | ||
"package-metadata-exists:file-existence": ["warning", {"files": ["pom.xml", "build.xml", "build.gradle"]}] | ||
}, | ||
"license=*": { | ||
"license-detectable-by-licensee": ["warning"] | ||
}, | ||
"language=python": { | ||
"package-metadata-exists:file-existence": ["warning", {"files": ["setup.py", "requirements.txt"]}] | ||
} | ||
} | ||
} |