11 lines
192 B
JavaScript
11 lines
192 B
JavaScript
module.exports = {
|
|
extends: [
|
|
'stylelint-config-standard',
|
|
],
|
|
// add your custom config here
|
|
// https://stylelint.io/user-guide/configuration
|
|
rules: {
|
|
"indentation": 2
|
|
}
|
|
}
|