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
/** | |
* @see https://stylelint.io/user-guide/rules/ | |
* @see https://www.npmjs.com/package/stylelint-scss | |
* @see https://www.npmjs.com/package/stylelint-config-recommended-scss | |
*/ | |
module.exports = { | |
extends: ['stylelint-config-recommended-scss'], | |
rules: { | |
'font-family-name-quotes': 'always-where-recommended', | |
indentation: [4, { baseIndentLevel: 1 }], |
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
<template> | |
<section class="resource-create"> | |
<h2>Create Resource</h2> | |
<cobra-alerts/> | |
<cobra-card title="Resource"> | |
<form @submit.prevent="onSubmit"> | |
<div class="form__groups"> | |
<b-form-group> |
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
doctype | |
html | |
body | |
// See: https://codepen.io/jbenner/pen/XyKqbK | |
h2 Usage | |
code(data-lang='sh') readme-md --help |
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
/** | |
* eslint.recommended (annotated) | |
* ================ | |
* Annotated defaults based on eslint.recommended | |
* | |
* @author: wassname | |
* @license: MIT | |
* @website https://gist.github.com/wassname/4693303388396c5f074b10865a969b43 | |
* @date 2017-11-13T23:08 | |
* @eslint-version: 4.11.0 |
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
module.exports = { | |
root: true, | |
env: { | |
node: true | |
}, | |
extends: [ | |
'plugin:vue/recommended', | |
'eslint:recommended' | |
], | |
rules: { |
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
const path = require('path'); | |
const PrerenderSpaPlugin = require('prerender-spa-plugin'); | |
const Renderer = PrerenderSpaPlugin.PuppeteerRenderer; | |
module.exports = { | |
configureWebpack: { | |
plugins: [ | |
new PrerenderSpaPlugin({ | |
staticDir: path.join(__dirname, 'dist'), | |
routes: ['/'], |
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
# EditorConfig is awesome: http://EditorConfig.org | |
# Top-most EditorConfig file. | |
root = true | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
indent_size = 4 | |
indent_style = space |
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
'use strict'; | |
const path = require('path'); | |
module.exports = { | |
/** @see https://webpack.js.org/configuration/entry-context/#entry */ | |
entry: './src/js/index.js', | |
/** @see https://webpack.js.org/configuration/output/ */ | |
output: { |