-
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.
- Loading branch information
0 parents
commit c83c321
Showing
4,271 changed files
with
527,678 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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,28 @@ | ||
# DSpace configuration for Codecov.io coverage reports | ||
# These override the default YAML settings at | ||
# https://docs.codecov.io/docs/codecov-yaml#section-default-yaml | ||
# Can be validated via instructions at: | ||
# https://docs.codecov.io/docs/codecov-yaml#validate-your-repository-yaml | ||
|
||
# Settings related to code coverage analysis | ||
coverage: | ||
status: | ||
# Configuration for project-level checks. This checks how the PR changes overall coverage. | ||
project: | ||
default: | ||
# For each PR, auto compare coverage to previous commit. | ||
# Require that overall (project) coverage does NOT drop more than 0.5% | ||
target: auto | ||
threshold: 0.5% | ||
# Configuration for patch-level checks. This checks the relative coverage of the new PR code ONLY. | ||
patch: | ||
default: | ||
# Enable informational mode, which just provides info to reviewers & always passes | ||
# https://docs.codecov.io/docs/commit-status#section-informational | ||
informational: true | ||
|
||
# Turn PR comments "off". This feature adds the code coverage summary as a | ||
# comment on each PR. See https://docs.codecov.io/docs/pull-request-comments | ||
# However, this same info is available from the Codecov checks in the PR's | ||
# "Checks" tab in GitHub. So, the comment is unnecessary. | ||
comment: false |
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,28 @@ | ||
.git | ||
.idea | ||
.vscode | ||
.DS_Store | ||
*.iml | ||
|
||
# Build folders | ||
node_modules | ||
build | ||
dist | ||
typings | ||
tsd_typings | ||
coverage | ||
__build__ | ||
__server_build__ | ||
|
||
# Node | ||
*.log | ||
npm-debug.log.* | ||
|
||
# Angular files | ||
*.ngfactory.ts | ||
*.css.shim.ts | ||
*.scss.shim.ts | ||
|
||
# Webpack files | ||
webpack.records.json | ||
package-lock.json |
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,20 @@ | ||
# Editor configuration, see https://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
insert_final_newline = false | ||
trim_trailing_whitespace = false | ||
|
||
[*.ts] | ||
quote_type = single | ||
|
||
[*.json5] | ||
ij_json_keep_blank_lines_in_code = 3 |
Oops, something went wrong.