This document provides a ready-to-use prompt for GitHub Copilot to generate Git commit messages following the gitmoji convention.
Task: Generate Git commit messages following the gitmoji convention.
This document provides a ready-to-use prompt for GitHub Copilot to generate Git commit messages following the gitmoji convention.
Task: Generate Git commit messages following the gitmoji convention.
{ | |
"preset": "laravel", | |
"rules": { | |
"concat_space": { | |
"spacing": "one" | |
}, | |
"fully_qualified_strict_types": true, | |
"global_namespace_import": { | |
"import_classes": true, | |
"import_constants": true, |
class Couple{ | |
Point p1, p2; | |
public Couple(Point p1, Point p2){ | |
this.p1 = p1; | |
this.p2 = p2; | |
} | |
public void link(){ | |
stroke(int(random(255)), int(random(255)),int(random(255))); |