tilgovi commented on a change in pull request #56: Adding repolinter and make code match ASF policies URL: https://github.com/apache/incubator-annotator/pull/56#discussion_r333263180
########## File path: repolinter.json ########## @@ -0,0 +1,64 @@ +{ + "axioms": { + "linguist":"language", + "licensee":"license", + "packagers":"packager" + }, + "rules": { + "all": { + "license-file-exists:file-existence": ["error", {"files": ["LICENSE*"], "nocase": true}], + "readme-file-exists:file-existence": ["error", {"files": ["README*"], "nocase": true}], + + "contributing-file-exists:file-existence": ["warning", {"files": ["CONTRIB*", ".github/CONTRIB*"]}], + "code-of-conduct-file-exists:file-existence": ["error", {"files": [ + "CODEOFCONDUCT*", "CODE-OF-CONDUCT*", "CODE_OF_CONDUCT*", + ".github/CODEOFCONDUCT*", ".github/CODE-OF-CONDUCT*", ".github/CODE_OF_CONDUCT*" + ]}], + "changelog-file-exists:file-existence": ["info", {"files": ["CHANGELOG*", "CHANGES*"], "nocase": true}], + "security-file-exists:file-existence": ["info", {"files": ["SECURITY.md"]}], + "support-file-exists:file-existence": ["info", {"files": ["{docs/,.github/,}SUPPORT*"], "nocase": true}], + "readme-references-license:file-contents": ["error", {"files": ["README*"], "content": "license", "flags": "i"}], + "binaries-not-present:file-type-exclusion": ["error", {"type": ["**/*.exe", "**/*.dll", "!node_modules/**"]}], + "test-directory-exists:directory-existence": ["error", {"directories": ["**/test*", "**/specs"], "nocase": true}], + "integrates-with-ci:file-existence": [ + "warning", + { + "files": [".gitlab-ci.yml", ".travis.yml", "appveyor.yml", ".appveyor.yml", "circle.yml", ".circleci/config.yml", "Jenkinsfile", ".drone.yml"] + } + ], + "source-license-headers-exist:file-starts-with": ["warning", {"files": ["**/*.js", "**/*.html", "!node_modules/**"], "lineCount": 5, "patterns": ["Licensed to the Apache Software Foundation"], "flags": "i"}], + "github-issue-template-exists:file-existence": ["info", {"files": ["ISSUE_TEMPLATE*", ".github/ISSUE_TEMPLATE*"]}], + "github-pull-request-template-exists:file-existence": ["info", {"files": ["PULL_REQUEST_TEMPLATE*", ".github/PULL_REQUEST_TEMPLATE*"]}] + }, + "language=javascript": { + "package-metadata-exists:file-existence": ["error", {"files": ["package.json"]}] + }, + "language=ruby": { + "package-metadata-exists:file-existence": ["error", {"files": ["Gemfile"]}] + }, + "language=java": { + "package-metadata-exists:file-existence": ["error", {"files": ["pom.xml", "build.xml", "build.gradle"]}] + }, + "license=*": { + "license-detectable-by-licensee": ["error"] + }, + "license=Apache-2.0": { + "notice-file-exists:apache-notice": ["error"] + }, + "language=python": { + "package-metadata-exists:file-existence": ["error", {"files": ["setup.py", "requirements.txt"]}] + }, + "language=objective-c": { + "package-metadata-exists:file-existence": ["error", {"files": ["Cartfile", "Podfile", "*.podspec"]}] + }, + "language=swift": { + "package-metadata-exists:file-existence": ["error", {"files": ["Package.swift"]}] + }, + "language=erlang": { + "package-metadata-exists:file-existence": ["error", {"files": ["rebar.config"]}] + }, + "language=elixir": { + "package-metadata-exists:file-existence": ["error", {"files": ["mix.exs"]}] + } Review comment: Is it worth pulling out the languages we don't use? ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services