Skip to content

Commit f0f4efd

Browse files
committed
chore(core): added crypto controller
1 parent dfabdc5 commit f0f4efd

File tree

8 files changed

+1019
-13
lines changed

8 files changed

+1019
-13
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,3 +134,4 @@ $RECYCLE.BIN/
134134
*.sw?
135135

136136
scripts
137+
*/certs/

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ repos:
3737
hooks:
3838
- id: yaml-format
3939
name: yaml-format
40-
entry: python scripts/format_yaml/main.py
40+
entry: python format_yaml/main.py
4141
language: system
4242
types: [yaml]
4343
files: \.(yaml)$
@@ -53,27 +53,27 @@ repos:
5353
# # TODO: Solve error
5454
# - id: yml-format
5555
# name: yml-format
56-
# entry: python scripts/format_yml/main.py
56+
# entry: python format_yml/main.py
5757
# language: system
5858
# types: [yaml]
5959
# files: \.(yml)$
6060
# exclude: '.github/.*'
6161
- id: docker-compose
6262
name: docker-compose
63-
entry: python scripts/validate_docker_compose/main.py
63+
entry: python validate_docker_compose/main.py
6464
language: system
6565
types: [yaml]
6666
files: ^docker-compose(\.dev|\.prod)?\.yml$
6767
- id: commit-msg-version-check
6868
name: commit-msg-version-check
69-
entry: python scripts/commit_msg_version_bump/main.py
69+
entry: python commit_msg_version_bump/main.py
7070
always_run: true
7171
language: system
7272
args: [.git/COMMIT_EDITMSG]
7373
stages: [pre-push]
7474
- id: generate-changelog
7575
name: generate-changelog
76-
entry: python scripts/generate_changelog/main.py
76+
entry: python generate_changelog/main.py
7777
always_run: true
7878
language: system
7979
- repo: https://github.com/pre-commit/mirrors-prettier

.pylintrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ extension-pkg-whitelist=
3939
fail-on=
4040

4141
# Specify a score threshold under which the program will exit with error.
42-
fail-under=10
42+
fail-under=9
4343

4444
# Interpret the stdin as a python script, whose filename needs to be passed as
4545
# the module_or_package argument.
@@ -402,7 +402,7 @@ preferred-modules=
402402

403403
# The type of string formatting that logging methods do. `old` means using %
404404
# formatting, `new` is for `{}` formatting.
405-
logging-format-style=old
405+
logging-format-style=new
406406

407407
# Logging modules to check that the string format arguments are in logging
408408
# function parameter format.

0 commit comments

Comments
 (0)