diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index b787221c..9ccbddde 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -5,9 +5,10 @@ linter: # See https://github.com/github/super-linter#supported-linters # An example of adding a custom linter is available at https://github.com/github/super-linter/tree/main/custom_linters # - Disabled linters + Disabled linters: - gitleaks # Remove this line to enable gitleaks - hadolint + - standard # Enabled linters # - ansible-lint diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml index 37cf5b91..a17a97af 100644 --- a/.github/workflows/super-linter.yml +++ b/.github/workflows/super-linter.yml @@ -26,6 +26,7 @@ jobs: uses: github/super-linter@v4 env: LINTER_RULES_PATH: / + FILTER_REGEX_EXCLUDE: "Dockerfile" YAML_CONFIG_FILE: .yamllint VALIDATE_ALL_CODEBASE: false MARKDOWN_CONFIG_FILE: .markdownlint.yml diff --git a/init.sh b/init.sh index e0dd0d0d..e97292da 100755 --- a/init.sh +++ b/init.sh @@ -82,7 +82,7 @@ if [[ $1 == "pending" ]]; then sed -i '' 's/timeout_commit = "5s"/timeout_commit = "150s"/g' "$HOME"/.laconicd/config/config.toml sed -i '' 's/timeout_broadcast_tx_commit = "10s"/timeout_broadcast_tx_commit = "150s"/g' "$HOME"/.laconicd/config/config.toml else - sed -i 's/create_empty_blocks_interval = "0s"/create_empty_blocks_interval = "30s"/g' $HOME/.laconicd/config/config.toml + sed -i 's/create_empty_blocks_interval = "0s"/create_empty_blocks_interval = "30s"/g' "$HOME"/.laconicd/config/config.toml sed -i 's/timeout_propose = "3s"/timeout_propose = "30s"/g' "$HOME"/.laconicd/config/config.toml sed -i 's/timeout_propose_delta = "500ms"/timeout_propose_delta = "5s"/g' "$HOME"/.laconicd/config/config.toml sed -i 's/timeout_prevote = "1s"/timeout_prevote = "10s"/g' "$HOME"/.laconicd/config/config.toml