Use generic array syntax for consistency
Always prefer `Array<T>` over `T[]` for primitive types only.
This commit is contained in:
parent
15d221ae0e
commit
e052d1df7b
1 changed files with 1 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
|||
],
|
||||
"jsRules": {},
|
||||
"rules": {
|
||||
"array-type": [true, "generic"],
|
||||
"quotemark": [true, "single", "jsx-double", "avoid-template", "avoid-escape"],
|
||||
"no-consecutive-blank-lines": [true, 2],
|
||||
"interface-name": [true, "never-prefix"]
|
||||
|
|
Loading…
Reference in a new issue