File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -16,14 +16,14 @@ module.exports = {
16
16
17
17
### Options
18
18
19
- This rule accepts the following options
20
-
21
- 1 . Quote style (string ):
22
- - "double" (default): Enforces the use of double quotes (` " ` ).
23
- - "single": Enforces the use of single quotes (` ' ` ).
24
- 2 . ` enforceTemplatedAttrValue ` (boolean) :
25
- - false (default): Does not enforce quote style inside template expressions.
26
- - true: Enforces quote style inside templated attribute values.
19
+ This rule has two options, a string option and an object option.
20
+
21
+ 1 . String option (quote style ):
22
+ - ` "double" ` (default) enforces the use of double quotes (` " ` )
23
+ - ` "single" ` enforces the use of single quotes (` ' ` )
24
+ 2 . Object option :
25
+ - ` "enforceTemplatedAttrValue": false` (default) does not enforce quote style inside template expressions
26
+ - ` "enforceTemplatedAttrValue": true ` enforces quote style inside templated attribute values, which also means bare templated attributes are disallowed
27
27
28
28
#### "double"
29
29
You can’t perform that action at this time.
0 commit comments