forked from girder/slicer_cli_web
-
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
Showing
20 changed files
with
2,713 additions
and
84 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,36 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
charset = utf-8 | ||
|
||
[*.js] | ||
indent_size = 4 | ||
|
||
[{*.json}] | ||
indent_size = 4 | ||
|
||
[Makefile] | ||
indent_style = tab | ||
|
||
[*.pug] | ||
indent_size = 2 | ||
|
||
[*.py] | ||
indent_size = 4 | ||
max_line_length = 100 | ||
|
||
[{*.rb,Vagrantfile}] | ||
indent_size = 2 | ||
|
||
[{*.sh,*.bat}] | ||
indent_size = 4 | ||
|
||
[*.styl] | ||
indent_size = 2 | ||
|
||
[*.yml] | ||
indent_size = 2 |
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,15 @@ | ||
comment: false | ||
coverage: | ||
status: | ||
# We have some variation in tests due to variations in the test runs. We | ||
# want to ignore these changes, but not let code coverage slip too much. | ||
project: | ||
default: | ||
threshold: 1 | ||
# This applies to the changed code. We allow it to be much less covered | ||
# than the main code, since we use the project threshold for that. | ||
patch: | ||
default: | ||
threshold: 25 | ||
only_pulls: true | ||
|
This file was deleted.
Oops, something went wrong.
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,23 @@ | ||
# Top level dependencies | ||
girder>=3.0.3 | ||
girder-jobs>=3.0.3 | ||
girder-worker>=0.6.0 | ||
|
||
# External dependencies | ||
pip>=9 | ||
coverage | ||
flake8 | ||
flake8-blind-except | ||
flake8-bugbear; python_version >= '3.5' | ||
flake8-docstrings | ||
flake8-quotes | ||
pytest>=3.6 | ||
pytest-cov>=2.6 | ||
pytest-girder>=3.0.3 | ||
pytest-xdist | ||
mock | ||
tox | ||
twine | ||
virtualenv | ||
|
||
|
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
Oops, something went wrong.