Skip to content

Instantly share code, notes, and snippets.

View StfBauer's full-sized avatar
🏠
Working from home as everyday

Stefan Bauer StfBauer

🏠
Working from home as everyday
View GitHub Profile

<%= libraryName %>

This is where you include your project's documentation.

Global dependencies

Requires Gulp globally installed:

npm install --global gulp
@StfBauer
StfBauer / column-formatting.json
Last active March 7, 2023 08:36
Category Formatting Example
{
"elmType": "div",
"style": {
"flex-wrap": "wrap",
"display": "flex"
},
"children": [
{
"elmType": "div",
"style": {
@StfBauer
StfBauer / .stylelintrc.js
Last active January 14, 2024 19:58
StyleLint config
/** @type {import('stylelint').Config} */
module.exports = {
"extends": [
"stylelint-config-recommended-scss"
],
"plugins": [
"stylelint-order",
"stylelint-scss"
],
"rules": {