UNPKG

497 BJavaScriptView Raw
1module.exports = {
2 rules: {
3 indentation: 2,
4 'max-empty-lines': 1,
5 'max-line-length': [80, { ignore: ['comments'] }],
6 'max-nesting-depth': [2, { ignore: ['blockless-at-rules'] }],
7 'no-descending-specificity': true,
8 'no-duplicate-selectors': true,
9 'no-empty-source': true,
10 'no-eol-whitespace': true,
11 'no-extra-semicolons': true,
12 'no-invalid-double-slash-comments': true,
13 'no-missing-end-of-source-newline': true,
14 'no-unknown-animations': true
15 }
16}