Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 585 Bytes

README.md

File metadata and controls

36 lines (27 loc) · 585 Bytes

How to contribute

This site is using Jekyll.

Install

bundle install
npm install

Serve

bundle exec jekyll serve --livereload --incremental

VSCode configuration

These plugin will help writing CSS respecting the rules: https://marketplace.visualstudio.com/items?itemName=stylelint.vscode-stylelint

Here is the configuration:

{
    "editor.codeActionsOnSave": {
        "source.fixAll.stylelint": true
    },
    "stylelint.validate": [
        "css",
        "less",
        "postcss",
        "scss"
    ]
}