Skip to content

Commit

Permalink
chore: added github and vscode files
Browse files Browse the repository at this point in the history
  • Loading branch information
lumpsoid committed Dec 28, 2024
1 parent 2a34437 commit edcb761
Show file tree
Hide file tree
Showing 6 changed files with 111 additions and 53 deletions.
23 changes: 23 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!--
Thanks for contributing!
Provide a description of your changes below and a general summary in the title
Please look at the following checklist to ensure that your PR can be accepted quickly:
-->

## Description

<!--- Describe your changes in detail -->

## Type of Change

<!--- Put an `x` in all the boxes that apply: -->

- [ ] ✨ New feature (non-breaking change which adds functionality)
- [ ] 🛠️ Bug fix (non-breaking change which fixes an issue)
- [ ] ❌ Breaking change (fix or feature that would cause existing functionality to change)
- [ ] 🧹 Code refactor
- [ ] ✅ Build configuration change
- [ ] 📝 Documentation
- [ ] 🗑️ Chore
25 changes: 25 additions & 0 deletions .github/cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"version": "0.2",
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"dictionaries": ["vgv_allowed", "vgv_forbidden"],
"dictionaryDefinitions": [
{
"name": "vgv_allowed",
"path": "https://raw.githubusercontent.com/verygoodopensource/very_good_dictionaries/main/allowed.txt",
"description": "Allowed VGV Spellings"
},
{
"name": "vgv_forbidden",
"path": "https://raw.githubusercontent.com/verygoodopensource/very_good_dictionaries/main/forbidden.txt",
"description": "Forbidden VGV Spellings"
}
],
"useGitignore": true,
"words": [
"Contador",
"localizable",
"mostrado",
"página",
"Texto"
]
}
10 changes: 10 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "pub"
directory: "/"
schedule:
interval: "daily"
29 changes: 29 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: test_to_get_github

concurrency:
group: $-$
cancel-in-progress: true

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
semantic-pull-request:
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/semantic_pull_request.yml@v1

build:
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/flutter_package.yml@v1
with:
flutter_channel: stable

spell-check:
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/spell_check.yml@v1
with:
includes: |
**/*.md
modified_files_only: false
9 changes: 9 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"dart-code.dart-code",
"dart-code.flutter",
"felixangelov.bloc"
]
}
68 changes: 15 additions & 53 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,68 +5,30 @@
"version": "0.2.0",
"configurations": [
{
"name": "octimemo",
"name": "Launch development",
"request": "launch",
"type": "dart",
"program": "lib/main.dart",
"program": "lib/main_development.dart",
"args": [
"--flavor",
"development",
"--target",
"lib/main_development.dart"
]
},
{
"name": "octimemo (profile mode)",
"name": "Launch staging",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
"program": "lib/main_staging.dart",
"args": ["--flavor", "staging", "--target", "lib/main_staging.dart"]
},
{
"name": "octimemo (release mode)",
"name": "Launch production",
"request": "launch",
"type": "dart",
"flutterMode": "release"
},
{
"name": "local_sqflite_api",
"cwd": "packages/local_sqflite_api",
"request": "launch",
"type": "dart"
},
{
"name": "note_sqflite_api",
"cwd": "packages/note_sqflite_api",
"request": "launch",
"type": "dart"
},
{
"name": "note_sqflite_api (profile mode)",
"cwd": "packages/note_sqflite_api",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "note_sqflite_api (release mode)",
"cwd": "packages/note_sqflite_api",
"request": "launch",
"type": "dart",
"flutterMode": "release"
},
{
"name": "notes_repository",
"cwd": "packages/notes_repository",
"request": "launch",
"type": "dart"
},
{
"name": "notes_repository (profile mode)",
"cwd": "packages/notes_repository",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "notes_repository (release mode)",
"cwd": "packages/notes_repository",
"request": "launch",
"type": "dart",
"flutterMode": "release"
"program": "lib/main_production.dart",
"args": ["--flavor", "production", "--target", "lib/main_production.dart"]
}
]
}
}

0 comments on commit edcb761

Please sign in to comment.