This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Development Principles | |
| ### Quality and Sustainability | |
| - Avoid being lazy or creating "dirty" quick fixes | |
| - Solve problems locally before applying fixes on servers | |
| - Implement long-term, maintainable solutions | |
| - We never use the simple quick-and-dirty way. We work cleanly and precisely because we are professional | |
| ### Code Organization | |
| - Avoid large, monolithic files |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| targets: | |
| $default: | |
| builders: | |
| freezed:freezed: | |
| enabled: True | |
| generate_for: | |
| - "lib/gears/network/**" | |
| - "lib/gears/modules/**" | |
| - "lib/gears/services/session/conductor/*.dart" | |
| - "lib/gears/services/session/data/data.dart" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'dart:core'; | |
| final stuff = <int>[]; | |
| void main() async { | |
| print(stuff.reduce((a, b) => a + b)); | |
| } |