Skip to content

Instantly share code, notes, and snippets.

View wladyslawkrz's full-sized avatar
🤠

Uladzislau Kviatkouski wladyslawkrz

🤠
View GitHub Profile
@wladyslawkrz
wladyslawkrz / conventional-commits.md
Created April 29, 2024 11:11 — forked from Zekfad/conventional-commits.md
Conventional Commits Cheatsheet

Quick examples

  • feat: new feature
  • fix(scope): bug in scope
  • feat!: breaking change / feat(scope)!: rework API
  • chore(deps): update dependencies

Commit types

  • build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
  • ci: Changes to CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)
  • chore: Changes which doesn't change source code or tests e.g. changes to the build process, auxiliary tools, libraries
@wladyslawkrz
wladyslawkrz / gist:4b681f7c7e0e2bfdb08f5c39464347d5
Created December 28, 2023 14:56 — forked from lucasriondel/gist:4833c883c92a58b366d3b8a7577424c5
Custom checkbox react typescript styled-components
import React from "react";
import styled from "styled-components";
const CheckboxContainer = styled.div`
display: inline-block;
vertical-align: middle;
`;
const Icon = styled.svg`
fill: none;