-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Split build system config by tools, fix typos, and fix the `defa…
…ult` attribute in profile (#323) - split build system config by tools - fix the creation of .github folder - fix the usage of the attribute `default` in the profile yaml file - fix typo `continuos` to `continuous` - create an alias for check_schema.py command in the ci.sh - fix compose.yaml content structure - improve configuration .editorconfig - update makim to 1.19.0
- Loading branch information
Showing
35 changed files
with
542 additions
and
530 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 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 |
---|---|---|
|
@@ -12,5 +12,5 @@ dependencies: | |
- compilers | ||
- pip | ||
- pip: | ||
- makim==1.18.1 | ||
- makim==1.19.0 | ||
- paginate |
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 |
---|---|---|
|
@@ -12,5 +12,5 @@ dependencies: | |
- compilers | ||
- pip | ||
- pip: | ||
- makim==1.18.1 | ||
- makim==1.19.0 | ||
- paginate==0.5.6 |
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
Large diffs are not rendered by default.
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
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
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
5 changes: 5 additions & 0 deletions
5
src/scicookie/{{cookiecutter.project_slug}}/build-system/base/config-bandit.toml
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,5 @@ | ||
{%- if cookiecutter.use_bandit == "yes" %} | ||
[tool.bandit] | ||
exclude_dirs = ["tests"] | ||
targets = "./" | ||
{% endif -%} |
9 changes: 9 additions & 0 deletions
9
src/scicookie/{{cookiecutter.project_slug}}/build-system/base/config-black.toml
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,9 @@ | ||
{%- if cookiecutter.use_black == "yes" %} | ||
[tool.black] | ||
line-length = 79 | ||
target-version = ["py39"] | ||
force-exclude = '''(?x)( | ||
docs/* | ||
| .*\\.egg-info | ||
)''' # TOML's single-quoted strings do not require escaping backslashes | ||
{% endif -%} |
8 changes: 8 additions & 0 deletions
8
src/scicookie/{{cookiecutter.project_slug}}/build-system/base/config-isort.toml
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 @@ | ||
{%- if cookiecutter.use_isort == "yes" %} | ||
[tool.isort] | ||
ensure_newline_before_comments = true | ||
line_length = 79 | ||
multi_line_output = 3 | ||
include_trailing_comma = true | ||
skip_glob = ["docs/*", "*.egg-info"] | ||
{% endif -%} |
11 changes: 11 additions & 0 deletions
11
src/scicookie/{{cookiecutter.project_slug}}/build-system/base/config-mypy.toml
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 @@ | ||
{%- if cookiecutter.use_mypy == "yes" %} | ||
[tool.mypy] | ||
python_version = "3.9" | ||
check_untyped_defs = true | ||
strict = true | ||
ignore_missing_imports = true | ||
warn_unused_ignores = true | ||
warn_redundant_casts = true | ||
warn_unused_configs = true | ||
exclude = ["scripts/"] | ||
{% endif -%} |
6 changes: 6 additions & 0 deletions
6
src/scicookie/{{cookiecutter.project_slug}}/build-system/base/config-pytest.toml
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,6 @@ | ||
{%- if cookiecutter.use_pytest == "yes" %} | ||
[tool.pytest.ini_options] | ||
testpaths = [ | ||
"tests", | ||
] | ||
{% endif -%} |
Oops, something went wrong.