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>
| /* eslint-disable */ | |
| const cssnanoConfig = { | |
| preset: ['default', { discardComments: { removeAll: true } }] | |
| }; | |
| module.exports = ({ file, options }) => { | |
| return { | |
| // parser: options.enabled.optimize ? 'postcss-safe-parser' : undefined, | |
| plugins: { |
| <?php namespace App\NavWalker; | |
| use Roots\Soil\Nav\NavWalker as SoilNavWalker; | |
| /** | |
| * @author QWp6t | |
| * @license OSL-3.0 | |
| */ | |
| class Bootstrap extends SoilNavWalker | |
| { |
| 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"> |