refactor: use semicolon in js

This commit is contained in:
Jake Wiesler 2020-06-27 18:39:04 -04:00
parent daaa4504e0
commit 39733768aa
1 changed files with 2 additions and 2 deletions

View File

@ -5,9 +5,9 @@ module.exports = {
htmlWhitespaceSensitivity: "css",
printWidth: 80,
proseWrap: "always",
semi: false,
semi: true,
singleQuote: false,
tabWidth: 2,
trailingComma: "all",
useTabs: false,
}
};