mirror of
https://github.com/bitwarden/browser
synced 2026-01-07 02:53:28 +00:00
Fixed trailing comma lint warnings (#772)
* Fixed trailing comma lint warnings * Specified options on tslint comma rule
This commit is contained in:
10
tslint.json
10
tslint.json
@@ -57,9 +57,15 @@
|
||||
"trailing-comma": [
|
||||
true,
|
||||
{
|
||||
"multiline": "always",
|
||||
"multiline": {
|
||||
"objects": "always",
|
||||
"arrays": "always",
|
||||
"functions": "ignore",
|
||||
"typeLiterals": "ignore"
|
||||
},
|
||||
"singleline": "never"
|
||||
}
|
||||
]
|
||||
],
|
||||
"arrow-parens": false
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user