See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| { | |
| "name": "VSCode", | |
| "background": "#21252b", | |
| "foreground": "#dfdfdf", | |
| "cursorColor": "#f8f8f0", | |
| "black": "#000000", | |
| "blue": "#2472c8", | |
| "cyan": "#11a8cd", | |
| "green": "#0dbc79", | |
| "purple": "#bc3fbc", |
| variant: fcos | |
| version: 1.3.0 | |
| passwd: | |
| users: | |
| - name: core | |
| password_hash: PASSWORD_PLACEHOLDER | |
| - name: root | |
| groups: | |
| - docker |
| import 'package:at_client_mobile/at_client_mobile.dart'; | |
| import 'package:at_client/at_client.dart'; | |
| import 'package:at_commons/at_commons.dart'; | |
| import 'package:path_provider/path_provider.dart'; | |
| import 'package:at_birdhouse/utils/constants.dart';//TODO YOUR constants file here | |
| class ClientService { | |
| ClientService._internal(); | |
| static final ClientService _singleton = ClientService._internal(); |
| { | |
| "$schema": "http://json-schema.org/draft-07/schema", | |
| "$id": "https://json.schemastore.org/mason-brick", | |
| "title": "brick.yaml", | |
| "description": "mason brick Configuration File", | |
| "definitions": { | |
| "version": { | |
| "type": "string", | |
| "pattern": "^\\d+\\.\\d+\\.\\d+(?:[+-]\\S+)?$" | |
| }, |
| import 'package:at_client_mobile/at_client_mobile.dart'; | |
| import 'package:flutter/material.dart'; | |
| // * Once the onboarding process is completed you will be taken to this screen | |
| class HomeScreen extends StatelessWidget { | |
| const HomeScreen({Key? key}) : super(key: key); | |
| @override | |
| Widget build(BuildContext context) { | |
| // * Getting the AtClientManager instance to use below |
| import 'dart:io'; | |
| // Enum as status Pattern (Approach 1) | |
| enum MyStatusEnum { one, two, three } | |
| class SmellyBean { | |
| MyStatusEnum myStatus; | |
| final String? onlyOnOne; |
| clone () { | |
| REPO=$1 | |
| shift | |
| if [[ $REPO =~ ^(git@github\.com:.*|https:\/\/github\.com\/.*)$ ]] | |
| then | |
| prefix="" | |
| else | |
| prefix="git@github.com:" | |
| fi | |
| git clone "$prefix$REPO" "$@" |
| { | |
| "[json]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[markdown]": { | |
| "editor.defaultFormatter": "yzhang.markdown-all-in-one" | |
| }, | |
| "[yaml]": { | |
| "editor.defaultFormatter": "redhat.vscode-yaml" | |
| }, |
| import 'dart:async'; | |
| void main() { | |
| D().dispose(); | |
| } | |
| abstract class A { | |
| FutureOr<void> dispose(); | |
| } |