-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Local file storage option, democracy config, yarn package manager
- Loading branch information
Showing
41 changed files
with
17,021 additions
and
37,715 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Configuration file for MegaLinter | ||
# See all available variables at https://megalinter.github.io/configuration/ and in linters documentation | ||
|
||
APPLY_FIXES: all # all, none, or list of linter keys | ||
# ENABLE: # If you use ENABLE variable, all other languages/formats/tooling-formats will be disabled by default | ||
ENABLE_LINTERS: | ||
[ | ||
#YAML_YAMLLINT, | ||
#YAML_PRETTIER, | ||
#SQL_SQL_LINT, | ||
MARKDOWN_MARKDOWN_LINK_CHECK, | ||
ENV_DOTENV_LINTER, | ||
CREDENTIALS_SECRETLINT, | ||
COPYPASTE_JSCPD, | ||
] | ||
#DISABLE: | ||
# - HTML | ||
# - COPYPASTE # Uncomment to disable checks of excessive copy-pastes | ||
# - SPELL # Uncomment to disable checks of spelling mistakes | ||
SHOW_ELAPSED_TIME: true | ||
FILEIO_REPORTER: true | ||
FILTER_REGEX_EXCLUDE: tsconfig.json | ||
EXCLUDED_DIRECTORIES: | ||
[ | ||
.obsidian, | ||
plugins/optomitron-real-time-decision-support-plugin/analysis-data, | ||
plugins/optomitron-real-time-decision-support-plugin/analysis-data/*, | ||
.git, | ||
.github, | ||
.vscode, | ||
] | ||
# DISABLE_ERRORS: true # Uncomment if you want MegaLinter to detect errors but not block CI to pass |
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 |
---|---|---|
|
@@ -2,3 +2,5 @@ | |
|
||
/dist | ||
/coverage | ||
.prettierignore | ||
.docusaurus/ |
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,7 @@ | ||
{ | ||
"rules": [ | ||
{ | ||
"id": "@secretlint/secretlint-rule-preset-recommend" | ||
} | ||
] | ||
} |
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,7 @@ | ||
--- | ||
# To be added to the voter list, please introduce yourself in the Introductions channel on the Discussions page. | ||
HermanntheGermann: 1 | ||
kevinperrott: 1 | ||
mikepsinn: 1 | ||
vincenzodomina: 1 | ||
viznov: 1 |
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 @@ | ||
--- | ||
percentageToApprove: 51 # Percentage of votes required to approve a merge | ||
minVotersRequired: 1 # minimum number of unique voters needed to merge. | ||
minVotingWindowMinutes: 720 # minimum amount of time that must pass after the pull request is updated before any | ||
# vote can pass. 12 hours was selected because it allows at least 4 hours of review time after subtracting 8 hours | ||
# for sleep. |
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,17 @@ | ||
--- | ||
########################################### | ||
# These are the rules used for # | ||
# linting all the yaml files in the stack # | ||
# NOTE: # | ||
# You can disable line with: # | ||
# # yamllint disable-line # | ||
########################################### | ||
extends: default | ||
rules: | ||
new-lines: | ||
level: warning | ||
type: unix | ||
line-length: | ||
max: 500 | ||
comments: | ||
min-spaces-from-content: 1 # Used to follow prettier standard: https://github.com/prettier/prettier/pull/10926 |
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
Oops, something went wrong.