Format code with prettier

This commit fixes the style issues introduced in 525e1d6 according to the output
from prettier.

Details: https://deepsource.io/gh/MillenniumEarl/F95API/transform/95effcff-4076-4cfe-9165-1ab1cfdc2715/
pull/42/head
deepsource-autofix[bot] 2020-10-28 10:51:55 +00:00 committed by GitHub
parent 525e1d6417
commit 7b9dd8a1f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 33 deletions

View File

@ -11,25 +11,10 @@
"ecmaVersion": 12
},
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"windows"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
],
"no-unused-vars": [
"error",
"after-used"
]
"indent": ["error", 4],
"linebreak-style": ["error", "windows"],
"quotes": ["error", "double"],
"semi": ["error", "always"],
"no-unused-vars": ["error", "after-used"]
}
}