-
Notifications
You must be signed in to change notification settings - Fork 4
/
light-touch.js
48 lines (48 loc) · 1018 Bytes
/
light-touch.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
export default {
rules: {
'carbon/layout-use': [
true,
{
severity: 'warning',
acceptCarbonMiniUnitsFunction: true,
acceptUndefinedVariables: true,
acceptScopes: ['**'],
acceptCarbonCustomProp: true,
},
],
'carbon/motion-duration-use': [
true,
{
severity: 'warning',
acceptUndefinedVariables: true,
acceptScopes: ['**'],
acceptCarbonCustomProp: true,
},
],
'carbon/motion-easing-use': [
true,
{
severity: 'warning',
acceptUndefinedVariables: true,
acceptScopes: ['**'],
},
],
'carbon/theme-use': [
true,
{
severity: 'warning',
acceptUndefinedVariables: true,
acceptScopes: ['**'],
acceptCarbonCustomProp: true,
},
],
'carbon/type-use': [
true,
{
severity: 'warning',
acceptUndefinedVariables: true,
acceptScopes: ['**'],
},
],
},
};