Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: clean up migrations #830

Merged
merged 6 commits into from
Mar 25, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ out/
**/.bloop/
*.worksheet.sc
**/metals.sbt
prism-interactive-demo-web/src/protos/intdemo
*.aux
*.aux
*.toc
*.pdf
.idea_modules
Expand All @@ -35,3 +34,4 @@ mill
client-storage.txt
.bsp
*.sc
megalinter-reports
40 changes: 20 additions & 20 deletions .mega-linter.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
# Configuration file for Mega-Linter
# See all available variables at https://megalinter.github.io/configuration/

APPLY_FIXES: all

Check warning on line 4 in .mega-linter.yml

View workflow job for this annotation

GitHub Actions / Lint changes

4:1 [document-start] missing document start "---"
DEFAULT_BRANCH: main
DISABLE_LINTERS: [
REPOSITORY_DEVSKIM,
REPOSITORY_GITLEAKS,
DOCKERFILE_HADOLINT,
REPOSITORY_TRIVY,
REPOSITORY_CHECKOV,
REPOSITORY_SECRETLINT,
SCALA_SCALAFIX,
SQL_TSQLLINT,
C_CPPLINT, # For pollux/lib/anoncreds/src/main/c
CPP_CPPLINT, # For pollux/lib/anoncreds/src/main/c
JAVA_CHECKSTYLE, # For pollux/lib/anoncreds/src/main/java
]
DISABLE_ERRORS_LINTERS: [
KOTLIN_KTLINT,
PROTOBUF_PROTOLINT,
OPENAPI_SPECTRAL,
MARKDOWN_MARKDOWN_LINK_CHECK,
]

REPOSITORY_DEVSKIM,
REPOSITORY_GITLEAKS,
DOCKERFILE_HADOLINT,
REPOSITORY_TRIVY,
REPOSITORY_CHECKOV,
REPOSITORY_SECRETLINT,
SCALA_SCALAFIX,
SQL_TSQLLINT,
C_CPPLINT, # For pollux/lib/anoncreds/src/main/c
CPP_CPPLINT, # For pollux/lib/anoncreds/src/main/c
JAVA_CHECKSTYLE, # For pollux/lib/anoncreds/src/main/java
]

Check failure on line 18 in .mega-linter.yml

View workflow job for this annotation

GitHub Actions / Lint changes

18:3 [indentation] wrong indentation: expected 0 but found 2
DISABLE_ERRORS_LINTERS:
[

Check failure on line 20 in .mega-linter.yml

View workflow job for this annotation

GitHub Actions / Lint changes

20:3 [indentation] wrong indentation: expected 4 but found 2
KOTLIN_KTLINT,

Check failure on line 21 in .mega-linter.yml

View workflow job for this annotation

GitHub Actions / Lint changes

21:5 [indentation] wrong indentation: expected 6 but found 4
PROTOBUF_PROTOLINT,

Check failure on line 22 in .mega-linter.yml

View workflow job for this annotation

GitHub Actions / Lint changes

22:5 [indentation] wrong indentation: expected 6 but found 4
OPENAPI_SPECTRAL,

Check failure on line 23 in .mega-linter.yml

View workflow job for this annotation

GitHub Actions / Lint changes

23:5 [indentation] wrong indentation: expected 6 but found 4
MARKDOWN_MARKDOWN_LINK_CHECK,

Check failure on line 24 in .mega-linter.yml

View workflow job for this annotation

GitHub Actions / Lint changes

24:5 [indentation] wrong indentation: expected 6 but found 4
]
DISABLE: [COPYPASTE, SPELL, CREDENTIALS]
SHOW_ELAPSED_TIME: false
FILEIO_REPORTER: false
Expand All @@ -37,13 +37,13 @@
# that could lead to new files in workspace created
# with CLRF instead of CL due docker/python/git chain
PRE_COMMANDS:
- command: git config --global core.autocrlf input

Check failure on line 40 in .mega-linter.yml

View workflow job for this annotation

GitHub Actions / Lint changes

40:3 [indentation] wrong indentation: expected 4 but found 2
cwd: "workspace"

# Linter customisation
MARKDOWN_MARKDOWN_LINK_CHECK_FILTER_REGEX_EXCLUDE: "CHANGELOG.md"
MARKDOWN_MARKDOWNLINT_FILTER_REGEX_EXCLUDE: "CHANGELOG.md"
SQL_SQL_LINT_ARGUMENTS: -d postgres --ignore-errors=postgres-invalid-alter-option
SQL_SQL_LINT_ARGUMENTS: -d postgres --ignore-errors=postgres-invalid-alter-option,postgres-invalid-create-option
YAML_YAMLLINT_FILTER_REGEX_EXCLUDE: "infrastructure/charts/node/*"
YAML_PRETTIER_FILTER_REGEX_EXCLUDE: "infrastructure/charts/node/*"
YAML_V8R_FILTER_REGEX_EXCLUDE: "infrastructure/charts/node/*"

This file was deleted.

16 changes: 0 additions & 16 deletions node/src/main/resources/db/migration/V11__revoked_credentials.sql

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading
Loading