generated from asdf-vm/asdf-plugin-template
-
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.
chore: setup project after generating from template
- Loading branch information
1 parent
a737ba3
commit 629b06e
Showing
16 changed files
with
200 additions
and
46 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 |
---|---|---|
@@ -1,12 +1,15 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = tab | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.{md,yml,yaml}] | ||
indent_style = space | ||
indent_size = 2 | ||
max_line_length = 120 | ||
|
||
[*.md] | ||
trim_trailing_whitespace = 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
* @valian-ca/developers |
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# Title | ||
|
||
<!--- Provide a general summary of your changes in the Title above --> | ||
|
||
## Description | ||
|
This file was deleted.
Oops, something went wrong.
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,27 @@ | ||
{ | ||
extends: [ | ||
'config:recommended', | ||
':pinDependencies', | ||
':pinDevDependencies', | ||
'schedule:earlyMondays', | ||
':semanticCommits', | ||
':semanticCommitTypeAll(chore)' | ||
], | ||
dependencyDashboard: true, | ||
timezone: 'Canada/Eastern', | ||
assigneesFromCodeOwners: true, | ||
labels: [ | ||
'dependencies' | ||
], | ||
packageRules: [ | ||
{ | ||
matchPackagePatterns: [ | ||
'.*' | ||
], | ||
matchManagers: [ | ||
'github-actions' | ||
], | ||
groupName: 'GitHub Actions Dependencies' | ||
}, | ||
], | ||
} |
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,65 @@ | ||
repository: | ||
name: asdf-shorebird | ||
description: shorebird plugin for the asdf version manager. | ||
topics: asdf-plugin | ||
|
||
private: false | ||
is_template: false | ||
default_branch: main | ||
|
||
has_issues: true | ||
has_wiki: false | ||
has_downloads: false | ||
has_projects: false | ||
|
||
allow_auto_merge: true | ||
allow_squash_merge: true | ||
allow_merge_commit: true | ||
allow_rebase_merge: false | ||
delete_branch_on_merge: true | ||
enable_automated_security_fixes: false | ||
enable_vulnerability_alerts: true | ||
|
||
labels: | ||
- name: bug | ||
color: '#cc0000' | ||
description: Something is broken | ||
- name: chore | ||
color: '#f2df8c' | ||
description: Repository or code maintenance | ||
- name: dependencies | ||
color: '#70f9e0' | ||
description: Update dependencies | ||
- name: documentation | ||
color: '#6cb524' | ||
description: Change in the documentation | ||
- name: feature | ||
color: '#336699' | ||
description: New functionality | ||
|
||
teams: | ||
- name: developers | ||
permission: admin | ||
|
||
branches: | ||
- name: main | ||
protection: | ||
required_pull_request_reviews: | ||
required_approving_review_count: 1 | ||
dismiss_stale_reviews: false | ||
require_code_owner_reviews: true | ||
dismissal_restrictions: | ||
users: [ ] | ||
teams: [ ] | ||
required_status_checks: | ||
strict: true | ||
contexts: | ||
- Lint | ||
enforce_admins: false | ||
required_linear_history: false | ||
required_conversation_resolution: true | ||
required_signatures: true | ||
restrictions: | ||
apps: [ ] | ||
users: [ ] | ||
teams: [ ] |
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,30 @@ | ||
### macOS template | ||
# General | ||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
|
||
# Icon must end with two \r | ||
Icon | ||
|
||
# Thumbnails | ||
._* | ||
|
||
# Files that might appear in the root of a volume | ||
.DocumentRevisions-V100 | ||
.fseventsd | ||
.Spotlight-V100 | ||
.TemporaryItems | ||
.Trashes | ||
.VolumeIcon.icns | ||
.com.apple.timemachine.donotpresent | ||
|
||
# Directories potentially created on remote AFP share | ||
.AppleDB | ||
.AppleDesktop | ||
Network Trash Folder | ||
Temporary Items | ||
.apdisk | ||
|
||
### JetBrains | ||
.idea/ |
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 @@ | ||
default: true | ||
MD013: | ||
line_length: 120 | ||
code_blocks: true | ||
MD024: | ||
siblings_only: true | ||
MD034: 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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
markdownlint-cli2 0.12.1 | ||
shellcheck 0.9.0 | ||
shfmt 3.6.0 | ||
yamllint 1.32.0 |
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 @@ | ||
extends: relaxed | ||
|
||
rules: | ||
line-length: | ||
max: 120 | ||
level: warning |
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,29 @@ | ||
# Contributing | ||
|
||
Contributions are welcome! | ||
|
||
1. Install tools: | ||
|
||
```shell | ||
asdf plugin add shellcheck | ||
asdf plugin add shfmt | ||
asdf install | ||
``` | ||
|
||
2. Make changes | ||
3. Test | ||
|
||
```shell | ||
asdf plugin test shorebird https://github.com/valian-ca/asdf-shorebird.git "shorebird --version" | ||
``` | ||
|
||
4. Lint & format: | ||
|
||
```shell | ||
./scripts/format.bash | ||
./scripts/lint.bash | ||
``` | ||
|
||
5. Open PR | ||
|
||
Tests are automatically run in GitHub Actions on push and PR. |
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 was deleted.
Oops, something went wrong.
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