mirror of
https://github.com/tachiyomiorg/website.git
synced 2024-10-31 23:15:05 +01:00
26 lines
621 B
JavaScript
26 lines
621 B
JavaScript
module.exports = {
|
|
plugins: ['stylelint-stylus'],
|
|
rules: {
|
|
'stylus/pythonic': 'never',
|
|
'stylus/declaration-colon': 'always',
|
|
'stylus/semicolon': 'never',
|
|
'stylus/single-line-comment-double-slash-space-after': 'always',
|
|
'stylus/property-no-unknown': null,
|
|
'stylus/selector-type-no-unknown': null,
|
|
'stylus/selector-list-comma': 'always',
|
|
'stylus/indentation': [
|
|
2,
|
|
{
|
|
indentInsideParens: 'twice',
|
|
},
|
|
],
|
|
'rule-empty-line-before': [
|
|
'always',
|
|
{
|
|
except: ['first-nested'],
|
|
},
|
|
],
|
|
},
|
|
extends: ['stylelint-stylus/standard'],
|
|
}
|