Skip to content

Instantly share code, notes, and snippets.

View CesarDenis's full-sized avatar
🚀
Ready? Go...

Cesar Denis CesarDenis

🚀
Ready? Go...
View GitHub Profile
@CesarDenis
CesarDenis / CONTRIBUTING.md
Last active September 30, 2021 00:18 — forked from ivanrosolen/conventional_commits.md
Guia para mensagens de commits

Guia para mensagens de commits

Formato da mensagem

Cada mensagem de commit consiste em um cabeçalho, um corpo e um rodapé.

Cabeçalho

Tem um formato pré-definido, que inclui um tipo e um título:

@CesarDenis
CesarDenis / Main.js
Last active April 17, 2019 21:36
React Router
import React from 'react';
import { Route, Redirect, Switch } from 'react-router-dom';
import Header from '~/components/Header';
import Dashboard from '~/pages/Dashboard';
import Users from '~/pages/Users';
const Main = () => (
<div id="app-container">
@CesarDenis
CesarDenis / Bootstrap.php
Created May 18, 2018 19:07 — forked from QWp6t/Bootstrap.php
NavWalkers
<?php namespace App\NavWalker;
use Roots\Soil\Nav\NavWalker as SoilNavWalker;
/**
* @author QWp6t
* @license OSL-3.0
*/
class Bootstrap extends SoilNavWalker
{
@CesarDenis
CesarDenis / CONTRIBUTING.md
Last active June 13, 2019 14:36
Commit Message Guidelines

Commit Message Guidelines

Commit Message Format

Each commit message consists of a header and a body. The header has a special format that includes a type and a subject:

<type>: <subject>
<BLANK LINE>
@CesarDenis
CesarDenis / postcss.config.js
Last active December 2, 2017 23:19
webpack
/* eslint-disable */
const cssnanoConfig = {
preset: ['default', { discardComments: { removeAll: true } }]
};
module.exports = ({ file, options }) => {
return {
// parser: options.enabled.optimize ? 'postcss-safe-parser' : undefined,
plugins: {