-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
32 lines (31 loc) · 1.05 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
* Copyright Zendesk, Inc.
*
* Use of this source code is governed under the Apache License, Version 2.0
* found at http://www.apache.org/licenses/LICENSE-2.0.
*/
module.exports = {
extends: [
'./rules/avoid-errors/descending',
'./rules/avoid-errors/duplicate',
'./rules/avoid-errors/empty',
'./rules/avoid-errors/invalid',
'./rules/avoid-errors/irregular',
'./rules/avoid-errors/missing',
'./rules/avoid-errors/non-standard',
'./rules/avoid-errors/overrides',
'./rules/avoid-errors/unknown',
'./rules/avoid-errors/unmatchable',
'./rules/enforce-conventions/allowed-disallowed-required',
'./rules/enforce-conventions/case',
'./rules/enforce-conventions/empty-lines',
'./rules/enforce-conventions/max-min',
'./rules/enforce-conventions/notation',
'./rules/enforce-conventions/pattern',
'./rules/enforce-conventions/quotes',
'./rules/enforce-conventions/redundant',
'./rules/enforce-conventions/whitespace-inside',
'./plugins/stylelint-order'
],
reportNeedlessDisables: true
};