-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #453 from swrlab/dev/dts-remaining-onboarding
feat: enable multiple user accounts for DTS plugin
- Loading branch information
Showing
84 changed files
with
1,492 additions
and
1,159 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# docs: https://editorconfig.org | ||
# please make sure to keep this file in sync between repositories | ||
# to main file should be edited in `swr-prettier-config` and copied where needed | ||
|
||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_style = tab | ||
indent_size = 8 | ||
print_width = 111 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.{yml,yaml}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# LiquidSoap config files | ||
[*.liq] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# Terraform config files | ||
[*.tf] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# Linting toml config files | ||
[*.toml] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# Auto-generated CSV Files | ||
[*.csv] | ||
insert_final_newline = false |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Linter | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches-ignore: | ||
- dependabot/** | ||
|
||
permissions: | ||
contents: read | ||
statuses: write | ||
|
||
jobs: | ||
lint: | ||
uses: swrlab/node-utils/.github/workflows/linter.yml@main | ||
with: | ||
install-all: false | ||
log-level: "NOTICE" | ||
validate-all-codebase: false |
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ yarn-error.log* | |
.DS_STORE | ||
|
||
# keys | ||
keys/*.json | ||
keys/ | ||
.env | ||
|
||
# Dependency directories | ||
|
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,35 @@ | ||
# see config https://github.com/DavidAnson/markdownlint#optionsconfig | ||
# see example file https://github.com/DavidAnson/markdownlint/blob/main/schema/.markdownlint.yaml | ||
# see rules https://github.com/markdownlint/markdownlint/blob/master/docs/RULES.md | ||
# recommended VS Code plugin: https://marketplace.visualstudio.com/items?itemName=DavidAnson.vscode-markdownlint | ||
|
||
# Default state for all rules | ||
default: true | ||
|
||
# Unordered list style | ||
MD004: true | ||
|
||
MD007: | ||
# Unordered list indentation | ||
indent: 2 | ||
|
||
# MD013/line-length - Line length | ||
MD013: | ||
# Number of characters | ||
line_length: 808 | ||
|
||
MD026: | ||
# List of not allowed | ||
punctuation: '.,;:!。,;:' | ||
|
||
# Ordered list item prefix | ||
MD029: false | ||
|
||
# Allow inline HTML | ||
MD033: false | ||
|
||
# Emphasis used instead of a heading | ||
MD036: false | ||
|
||
# Error on blank lines | ||
blank_lines: false |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// fetch and convert env | ||
const keys = Buffer.from(process.env.DTS_KEYS, 'base64').toString('utf8') | ||
const decoded = JSON.parse(keys) | ||
|
||
// export content | ||
module.exports = decoded |
Oops, something went wrong.