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 'package:flutter/material.dart'; | |
void main() { | |
runApp(const MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
const MyApp({super.key}); | |
@override |
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
{ | |
"path": "cz-emoji", | |
"config": { | |
"cz-emoji": { | |
"subjectMaxLength": 72, | |
"skipQuestions": ["scope"], | |
"types": [ | |
{ | |
"name": "feat", | |
"code": "🚀 feat:", |
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
# ==================== Emojis & Prefix ==================== | |
# ✨ feat: 新しい機能 | |
# 🐛 fix: バグの修正 | |
# 📚 docs: ドキュメントのみの変更 | |
# 🖋 style: 空白、フォーマット、セミコロン追加など | |
# ♻️ refactor: 仕様に影響がないコード改善(リファクタ) | |
# 🐎 perf: パフォーマンス向上関連 | |
# 🚨 test: テスト関連 |
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
#!/bin/bash -e | |
# 導入方法 | |
# | |
# cd ~/<your working directory> | |
# git clone https://gist.github.com/susatthi/1fa07960569757fe6d88b86c02ec34d4 scripts | |
# sh ./scripts/flutter_create.sh -h | |
# コマンドの使用方法を出力して終了する | |
function usage() { |