From effc4d0c4c93e22f9030f6dad19c280d3aa150df Mon Sep 17 00:00:00 2001 From: Anas Fikhi Date: Fri, 17 Nov 2023 06:22:40 +0100 Subject: [PATCH] [ Edit ] minor changes --- .github/ISSUE_TEMPLATE/ config.yml | 3 ++- .github/ISSUE_TEMPLATE/bug_report.md | 1 + .github/ISSUE_TEMPLATE/feature_request.md | 1 + .github/PULL_REQUEST_TEMPLATE.md | 1 + .github/cspell.json | 3 +-- .github/dependabot.yaml | 1 + .github/workflows/langsync.yaml | 1 + .gitignore | 2 +- .pubignore | 2 +- .vscode/launch.json | 24 +++++++++++----------- analysis_options.yaml | 1 + coverage_badge.svg | 2 +- dart_test.yaml | 3 ++- test/ensure_build_test.dart | 1 + test/src/commands/update_command_test.dart | 3 +++ 15 files changed, 30 insertions(+), 19 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/ config.yml b/.github/ISSUE_TEMPLATE/ config.yml index 3ba13e0..94ea4d4 100644 --- a/.github/ISSUE_TEMPLATE/ config.yml +++ b/.github/ISSUE_TEMPLATE/ config.yml @@ -1 +1,2 @@ -blank_issues_enabled: false + +blank_issues_enabled: false \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 50a4c7b..49a0344 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -5,6 +5,7 @@ title: "fix: " labels: bug --- + **Description** A clear and concise description of what the bug is. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index ddd2fcc..30f9821 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -16,3 +16,4 @@ Clearly describe what you are looking to add. The more context the better. **Additional Context** Add any other context or screenshots about the feature request go here. + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 6b9372e..ee0a140 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -21,3 +21,4 @@ - [ ] ✅ Build configuration change - [ ] 📝 Documentation - [ ] 🗑️ Chore + diff --git a/.github/cspell.json b/.github/cspell.json index 1b78898..d2041f2 100644 --- a/.github/cspell.json +++ b/.github/cspell.json @@ -15,6 +15,5 @@ } ], "useGitignore": true, - "words": [ - ] + "words": [] } diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index 63b035c..cfe0bdd 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -9,3 +9,4 @@ updates: directory: "/" schedule: interval: "daily" + diff --git a/.github/workflows/langsync.yaml b/.github/workflows/langsync.yaml index f718b06..5b9690b 100644 --- a/.github/workflows/langsync.yaml +++ b/.github/workflows/langsync.yaml @@ -53,3 +53,4 @@ jobs: - name: 🔎 Verify version run: dart run test --run-skipped -t version-verify + diff --git a/.gitignore b/.gitignore index 13b5e2a..58aa01f 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,4 @@ pubspec.lock coverage/ .test_runner.dart .idea -bin/langsync.exe \ No newline at end of file +bin/langsync.exe diff --git a/.pubignore b/.pubignore index f34e1a7..d224937 100644 --- a/.pubignore +++ b/.pubignore @@ -1 +1 @@ -readm.md \ No newline at end of file +readm.md diff --git a/.vscode/launch.json b/.vscode/launch.json index 88bea8d..f509a27 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,13 +1,13 @@ { - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": "langsync", - "request": "launch", - "type": "dart" - } - ] -} \ No newline at end of file + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "langsync", + "request": "launch", + "type": "dart" + } + ] +} diff --git a/analysis_options.yaml b/analysis_options.yaml index d767e5d..6d0725b 100644 --- a/analysis_options.yaml +++ b/analysis_options.yaml @@ -2,3 +2,4 @@ include: package:very_good_analysis/analysis_options.4.0.0.yaml linter: rules: public_member_api_docs: false + diff --git a/coverage_badge.svg b/coverage_badge.svg index 88bfadf..499e98c 100644 --- a/coverage_badge.svg +++ b/coverage_badge.svg @@ -17,4 +17,4 @@ 100% 100% - \ No newline at end of file + diff --git a/dart_test.yaml b/dart_test.yaml index 2f46c7e..cdf096d 100644 --- a/dart_test.yaml +++ b/dart_test.yaml @@ -1,3 +1,4 @@ tags: version-verify: - skip: "Should only be run during pull request. Verifies if version file is updated." \ No newline at end of file + skip: "Should only be run during pull request. Verifies if version file is updated." + \ No newline at end of file diff --git a/test/ensure_build_test.dart b/test/ensure_build_test.dart index 4b619ed..92d78d4 100644 --- a/test/ensure_build_test.dart +++ b/test/ensure_build_test.dart @@ -3,6 +3,7 @@ library ensure_build_test; import 'package:build_verify/build_verify.dart'; import 'package:test/test.dart'; +// void main() { test('ensure_build', expectBuildClean); diff --git a/test/src/commands/update_command_test.dart b/test/src/commands/update_command_test.dart index 38c459a..6aeae13 100644 --- a/test/src/commands/update_command_test.dart +++ b/test/src/commands/update_command_test.dart @@ -22,8 +22,11 @@ void main() { group('update', () { late PubUpdater pubUpdater; + late Logger logger; + late ProcessResult processResult; + late LangsyncCommandRunner commandRunner; setUp(() {