Skip to content

Commit

Permalink
full project restructure
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasilverentand committed Dec 17, 2024
1 parent 2301e4a commit 5f7bc16
Show file tree
Hide file tree
Showing 44 changed files with 2,191 additions and 710 deletions.
16 changes: 15 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
{
"cSpell.words": ["Pressable"]
"cSpell.words": ["Pressable"],
"cSpell.files": ["**/src/**"],
"github.copilot.chat.generateTests.codeLens": true,
"github.branchProtection": true,
"github.copilot.editor.enableCodeActions": true,
"github.copilot.chat.fixTestFailure.enabled": true,
"[dart]": {
"editor.defaultFormatter": "Dart-Code.dart-code",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "file"
},
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
}
}
13 changes: 10 additions & 3 deletions oui/analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ include: package:flutter_lints/flutter.yaml

linter:
rules:
always_declare_return_types: true
always_put_control_body_on_new_line: true
require_trailing_commas: true
- prefer_const_constructors
- prefer_const_constructors_in_immutables
- prefer_const_declarations
- prefer_const_literals_to_create_immutables
- avoid_unused_constructor_parameters
- always_declare_return_types
- always_put_control_body_on_new_line
- require_trailing_commas
- avoid_print
- avoid_returning_null_for_void
Loading

0 comments on commit 5f7bc16

Please sign in to comment.