File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,13 @@ const rules: Rule[] = [
9
9
conflicts : [ ] ,
10
10
description :'Determines which keyword should be used to import modules using defined in an imports statement.'
11
11
} ,
12
+ {
13
+ name :'imports-with-quotes' ,
14
+ type : 'boolean' ,
15
+ default : true ,
16
+ conflicts : [ ] ,
17
+ description : 'Determines whether to import modules defined with import statements with quotes or not.'
18
+ } ,
12
19
{
13
20
name : 'function-value-return-enabled' ,
14
21
type : 'boolean' ,
@@ -36,6 +43,27 @@ const rules: Rule[] = [
36
43
default : false ,
37
44
conflicts : [ 'enforce-single-string-quotes' ] ,
38
45
description : 'Enforces string values to have double quotes in output. Useful for languages like Java where quote type matters.'
46
+ } ,
47
+ {
48
+ name : 'export-required' ,
49
+ type : 'boolean' ,
50
+ default : false ,
51
+ conflicts : [ ] ,
52
+ description : 'Determines whether is it required to export a definable in order to reach it from another file.'
53
+ } ,
54
+ {
55
+ name : 'export-keyword' ,
56
+ type : 'keyword' ,
57
+ default : 'export' ,
58
+ conflicts : [ ] ,
59
+ description : 'Determines the keyword used to export a definable.'
60
+ } ,
61
+ {
62
+ name : 'export-enabled' ,
63
+ type : 'boolean' ,
64
+ default : true ,
65
+ conflicts : [ ] ,
66
+ description : 'Determines whether is it possible to export a definable with a keyword.'
39
67
}
40
68
] ;
41
69
You can’t perform that action at this time.
0 commit comments