Files
friflex_flutter_starter/.vscode/tasks.json
Yuri Petrov d9c45eb57e fix(linter): улучшение правил анализа и линтинга (#37)
* fix(linter): улучшение правил анализа и линтинга, добавление исключений и ошибок

* fix(tasks): исправления по ревью

---------

Co-authored-by: petrovyuri <petrovyuri@example.com>
2025-11-17 11:51:42 +03:00

65 lines
1.6 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build_runner --delete-conflicting-outputs",
"type": "shell",
"command": "flutter",
"args": [
"pub",
"run",
"build_runner",
"build",
"--delete-conflicting-outputs"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always"
},
"problemMatcher": []
},
{
"label": "build_runner clean",
"type": "shell",
"command": "dart",
"args": [
"run",
"build_runner",
"clean"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always"
},
"problemMatcher": []
},
{
"label": "switch_to_gms",
"type": "shell",
"command": "./tools/switch_service.sh gms",
"problemMatcher": []
},
{
"label": "switch_to_aurora",
"type": "shell",
"command": "./tools/switch_service.sh aurora",
"problemMatcher": []
},
{
"label": "flutter gen-l10n",
"type": "shell",
"command": "flutter",
"args": [
"gen-l10n"
],
"group": "build",
"problemMatcher": [],
}
]
}