Skip to content

Commit

Permalink
Improvements and clean up (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
leoafarias authored Dec 4, 2023
1 parent f8816b1 commit af2e234
Show file tree
Hide file tree
Showing 247 changed files with 19,421 additions and 11,856 deletions.
5 changes: 4 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@
"name": "Run all Tests",
"request": "launch",
"type": "dart",
"program": "./test/"
"program": "./test/",
"args": [
"--coverage"
]
}
]
}
22 changes: 1 addition & 21 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,5 @@
},
"files.exclude": {
"**/.fvm/versions": true
},
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#0a1a34",
"activityBar.background": "#0a1a34",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#a01f50",
"activityBarBadge.foreground": "#e7e7e7",
"commandCenter.border": "#e7e7e799",
"sash.hoverBorder": "#0a1a34",
"statusBar.background": "#02050a",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#0a1a34",
"statusBarItem.remoteBackground": "#02050a",
"statusBarItem.remoteForeground": "#e7e7e7",
"titleBar.activeBackground": "#02050a",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#02050a99",
"titleBar.inactiveForeground": "#e7e7e799"
},
"peacock.color": "#02050a"
}
}
9 changes: 4 additions & 5 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ analyzer:
exclude:
- "**/*.g.dart"
- "**/*.freezed.dart"



dart_code_metrics:
extends:
Expand All @@ -29,6 +27,7 @@ dart_code_metrics:
arguments-ordering:
child-last: true
avoid-dynamic: false
avoid-shadowing: false
prefer-getter-over-method: false
enum-constants-ordering: false
prefer-widget-private-members: false
Expand All @@ -55,12 +54,12 @@ dart_code_metrics:
- private-fields
- constructors
- static-methods
- public-getters
- private-methods
- private-getters
- public-setters
- private-setters
- public-getters
- public-setters
- public-methods
- private-methods
- overridden-public-methods
- overridden-public-getters
- build-method
Expand Down
Loading

0 comments on commit af2e234

Please sign in to comment.