Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
| import 'package:flutter/material.dart'; | |
| import 'package:flutter/widgets.dart'; | |
| import 'package:vector_math/vector_math_64.dart' show radians; | |
| void main() => runApp(ExampleApp()); | |
| class ExampleItem { | |
| static const Pineapples = ExampleItem._('Pineapples'); | |
| static const Watermelons = ExampleItem._('Watermelons'); | |
| static const StarFruit = ExampleItem._('Star Fruit'); |
| // Place your key bindings in this file to override the defaults | |
| [ | |
| { | |
| "command": "vscode-neovim.compositeEscape1", | |
| "key": "j", | |
| "when": "neovim.mode == insert && editorTextFocus", | |
| "args": "j" | |
| }, | |
| { | |
| "command": "vscode-neovim.compositeEscape2", |