This repository was archived by the owner on Feb 21, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 9 files changed +130
-1
lines changed Expand file tree Collapse file tree 9 files changed +130
-1
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : " 0.2" ,
3
+ "$schema" : " https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json" ,
4
+ "dictionaries" : [" vgv_allowed" , " vgv_forbidden" ],
5
+ "dictionaryDefinitions" : [
6
+ {
7
+ "name" : " vgv_allowed" ,
8
+ "path" : " https://raw.githubusercontent.com/verygoodopensource/very_good_dictionaries/main/allowed.txt" ,
9
+ "description" : " Allowed VGV Spellings"
10
+ },
11
+ {
12
+ "name" : " vgv_forbidden" ,
13
+ "path" : " https://raw.githubusercontent.com/verygoodopensource/very_good_dictionaries/main/forbidden.txt" ,
14
+ "description" : " Forbidden VGV Spellings"
15
+ }
16
+ ],
17
+ "useGitignore" : true ,
18
+ "words" : [
19
+ ]
20
+ }
Original file line number Diff line number Diff line change @@ -14,6 +14,6 @@ updates:
14
14
schedule :
15
15
interval : " daily"
16
16
- package-ecosystem : " pub"
17
- directory : " /tool/brick_generator "
17
+ directory : " /tool/generator "
18
18
schedule :
19
19
interval : " daily"
Original file line number Diff line number Diff line change 23
23
uses : VeryGoodOpenSource/very_good_workflows/.github/workflows/dart_package.yml@v1
24
24
with :
25
25
working_directory : src/my_cli
26
+
27
+ spell-check :
28
+ uses : VeryGoodOpenSource/very_good_workflows/.github/workflows/spell_check.yml@v1
29
+ with :
30
+ includes : |
31
+ **/*.md
32
+ !brick/**/*.md
33
+ .*/**/*.md
34
+ modified_files_only : false
Original file line number Diff line number Diff line change
1
+ blank_issues_enabled : false
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : Bug Report
3
+ about : Create a report to help us improve
4
+ title : " fix: "
5
+ labels : bug
6
+ ---
7
+
8
+ ** Description**
9
+
10
+ A clear and concise description of what the bug is.
11
+
12
+ ** Steps To Reproduce**
13
+
14
+ 1 . Go to '...'
15
+ 2 . Click on '....'
16
+ 3 . Scroll down to '....'
17
+ 4 . See error
18
+
19
+ ** Expected Behavior**
20
+
21
+ A clear and concise description of what you expected to happen.
22
+
23
+ ** Screenshots**
24
+
25
+ If applicable, add screenshots to help explain your problem.
26
+
27
+ ** Additional Context**
28
+
29
+ Add any other context about the problem here.
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : Feature Request
3
+ about : A new feature to be added to the project
4
+ title : " feat: "
5
+ labels : feature
6
+ ---
7
+
8
+ ** Description**
9
+
10
+ Clearly describe what you are looking to add. The more context the better.
11
+
12
+ ** Requirements**
13
+
14
+ - [ ] Checklist of requirements to be fulfilled
15
+
16
+ ** Additional Context**
17
+
18
+ Add any other context or screenshots about the feature request go here.
Original file line number Diff line number Diff line change
1
+ <!--
2
+ Thanks for contributing!
3
+
4
+ Provide a description of your changes below and a general summary in the title
5
+
6
+ Please look at the following checklist to ensure that your PR can be accepted quickly:
7
+ -->
8
+
9
+ ## Description
10
+
11
+ <!-- - Describe your changes in detail -->
12
+
13
+ ## Type of Change
14
+
15
+ <!-- - Put an `x` in all the boxes that apply: -->
16
+
17
+ - [ ] ✨ New feature (non-breaking change which adds functionality)
18
+ - [ ] 🛠️ Bug fix (non-breaking change which fixes an issue)
19
+ - [ ] ❌ Breaking change (fix or feature that would cause existing functionality to change)
20
+ - [ ] 🧹 Code refactor
21
+ - [ ] ✅ Build configuration change
22
+ - [ ] 📝 Documentation
23
+ - [ ] 🗑️ Chore
Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : " 0.2" ,
3
+ "$schema" : " https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json" ,
4
+ "dictionaries" : [" vgv_allowed" , " vgv_forbidden" ],
5
+ "dictionaryDefinitions" : [
6
+ {
7
+ "name" : " vgv_allowed" ,
8
+ "path" : " https://raw.githubusercontent.com/verygoodopensource/very_good_dictionaries/main/allowed.txt" ,
9
+ "description" : " Allowed VGV Spellings"
10
+ },
11
+ {
12
+ "name" : " vgv_forbidden" ,
13
+ "path" : " https://raw.githubusercontent.com/verygoodopensource/very_good_dictionaries/main/forbidden.txt" ,
14
+ "description" : " Forbidden VGV Spellings"
15
+ }
16
+ ],
17
+ "useGitignore" : true ,
18
+ "words" : [
19
+ ]
20
+ }
Original file line number Diff line number Diff line change 27
27
build :
28
28
uses : VeryGoodOpenSource/very_good_workflows/.github/workflows/dart_package.yml@v1
29
29
30
+ spell-check :
31
+ uses : VeryGoodOpenSource/very_good_workflows/.github/workflows/spell_check.yml@v1
32
+ with :
33
+ includes : |
34
+ **/*.md
35
+ !brick/**/*.md
36
+ .*/**/*.md
37
+ modified_files_only : false
38
+
30
39
verify-version :
31
40
runs-on : ubuntu-latest
32
41
steps :
You can’t perform that action at this time.
0 commit comments