Skip to content

Commit 06e0053

Browse files
Lint issues (#107)
* fixed lint issues * improved git ignore * improve readme --------- Co-authored-by: aguskoll <aguskoll@gmail.com>
1 parent 377b635 commit 06e0053

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+191
-327
lines changed

.idea/.gitignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

.idea/flutter-base.iml

Lines changed: 0 additions & 71 deletions
This file was deleted.

.idea/libraries/Dart_SDK.xml

Lines changed: 0 additions & 29 deletions
This file was deleted.

.idea/modules.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,11 @@ For more information you can check the [docs](https://dartcode.org/docs/launch-c
171171
- [intl](https://pub.dev/packages/intl) and [intl_utils](https://pub.dev/packages/intl_utils) for
172172
localization.
173173
- [flutter_svg](https://pub.dev/packages/flutter_svg) Svg Image loader.
174-
174+
- Auto generate translations files with [intl_utils](https://pub.dev/packages/intl_utils).
175+
176+
- ```text
177+
dart run intl_utils:generate
178+
```
175179
## Code Quality Standards
176180
177181
In order to meet the required code quality standards, this project is following

app/.gitignore

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ unlinked_spec.ds
7070
**/android/**/GeneratedPluginRegistrant.java
7171
**/android/key.properties
7272
*.jks
73+
/android/gradle.properties
7374

7475
# iOS/XCode related
7576
**/ios/**/*.mode1v3
@@ -121,4 +122,23 @@ app.*.symbols
121122
!**/ios/**/default.perspectivev3
122123
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
123124
!/dev/ci/**/Gemfile.lock
124-
/env*.json
125+
/env*.json
126+
127+
# Environment and configuration files (contain sensitive data)
128+
env/.env
129+
env/.settings
130+
env/env_*.json
131+
.env
132+
.env.*
133+
*.env
134+
135+
# Firebase/Google config files (may contain sensitive keys)
136+
**/google-services.json
137+
**/GoogleService-Info.plist
138+
firebase.json
139+
.firebaserc
140+
firebase-debug.log
141+
142+
# Local development files
143+
local.properties
144+
*.properties

app/android/build.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
flutter.versionName=1.0.0
22
flutter.appId=base
33
flutter.versionCode=1
4-
flutter.compileSdkVersion=34
5-
flutter.minSdkVersion=21
6-
flutter.targetSdkVersion=33
4+
flutter.compileSdkVersion=36
5+
flutter.minSdkVersion=24
6+
flutter.targetSdkVersion=36

app/lib/main/app.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import 'init.dart';
1717
class App extends StatelessWidget {
1818
GoRouter get _goRouter => Routers.authRouter;
1919

20-
const App({Key? key}) : super(key: key);
20+
const App({super.key});
2121

2222
@override
2323
Widget build(BuildContext context) {

app/lib/main/env/main_dev.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import 'package:firebase_core/firebase_core.dart';
21
import 'package:flutter/material.dart';
32
import 'package:app/main/env/env_config.dart';
43
import 'package:app/main/init.dart';

0 commit comments

Comments
 (0)