Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add prettier to project #15

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add semicolumns to code
blocus committed Jun 24, 2022
commit 99e5a24134d249c5a5293103bece67e2ecea712a
6 changes: 3 additions & 3 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -4,10 +4,10 @@
{
"files": ["*.js", "*.jsx", "*.ts", "*.tsx"],
"options": {
"printWidth": 100,
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"semi": true,
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "es5",
@@ -19,7 +19,7 @@
{
"files": ["*.css", "*.json", "*.scss", "*.html", "*.pug"],
"options": {
"printWidth": 100,
"printWidth": 120,
"useTabs": false,
"tabWidth": 2
}