UNPKG

361 BJavaScriptView Raw
1module.exports = {
2 rules: {
3 'comment-empty-line-before': [
4 'always',
5 {
6 except: ['first-nested'],
7 ignore: ['stylelint-commands']
8 }
9 ],
10 'comment-no-empty': true,
11 'comment-whitespace-inside': 'always'
12 // 'comment-word-blacklist': array|string: ["array", "of", "words", "or", "/regex/"]|"word"|"/regex/"
13 }
14}