Skip to content
This repository has been archived by the owner on Apr 24, 2023. It is now read-only.

v-technologies/stylelint-config-vtech

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stylelint-config-vtech

The stylelint config used for front-end projects at V-Technologies.

Setup

Install the package:

npm install --save-dev stylelint stylelint-config-vtech

Configure stylelint by adding .stylelintrc at the root of your project:

{
    "extends": "stylelint-config-vtech"
}

Use with webpack

npm install --save-dev stylelint-webpack-plugin

Then add in your webpack.config.js

const StylelintPlugin = require('stylelint-webpack-plugin');

plugins: [
    new StylelintPlugin()
]