File tree 1 file changed +28
-0
lines changed
1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -14,3 +14,31 @@ A few resources to get you started if this is your first Flutter project:
14
14
For help getting started with Flutter development, view the
15
15
[ online documentation] ( https://docs.flutter.dev/ ) , which offers tutorials,
16
16
samples, guidance on mobile development, and a full API reference.
17
+
18
+ ## Conventions
19
+
20
+ ### Code Style
21
+
22
+ We follow the [ Effective Dart code style] ( https://dart.dev/effective-dart/style ) .
23
+
24
+ Code should be formatted using ` dart format ` ([ docs] ( https://dart.dev/tools/dart-format ) ).
25
+
26
+ ### Commits, Branches and Pull Requests
27
+
28
+ Branch names should be written using kebab-case and have the following schema:
29
+
30
+ ```
31
+ <issue_key>-your-branch-name
32
+
33
+ 1234-commit-message-documentation
34
+ ```
35
+
36
+ Commit messages and PR names should have the following schema:
37
+ ```
38
+ <issue_key>: Your commit message
39
+
40
+ 1234: Add commit message documentation
41
+ ```
42
+
43
+ See [ this guide] ( https://github.com/erlang/otp/wiki/Writing-good-commit-messages ) for a general reference on how to
44
+ write good commit messages.
You can’t perform that action at this time.
0 commit comments