Skip to content

Commit

Permalink
chore: prettier and vscode MDS-921
Browse files Browse the repository at this point in the history
  • Loading branch information
karl-kallavus committed Dec 22, 2023
1 parent c631a05 commit e8f95b3
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
.env

# IDE
.vscode
.idea

# Node
Expand Down
5 changes: 5 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"trailingComma": "es5",
"tabWidth": 2,
"semi": true
}
7 changes: 7 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"recommendations": [
"bradlc.vscode-tailwindcss",

Check warning on line 3 in .vscode/extensions.json

View workflow job for this annotation

GitHub Actions / Spellcheck

Unknown word (bradlc)
"esbenp.prettier-vscode",

Check warning on line 4 in .vscode/extensions.json

View workflow job for this annotation

GitHub Actions / Spellcheck

Unknown word (esbenp)
"streetsidesoftware.code-spell-checker"
]
}
10 changes: 10 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"css.lint.unknownAtRules": "ignore",
"editor.formatOnSave": true,
"editor.tabSize": 2,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true
},
"prettier.printWidth": 2
}

0 comments on commit e8f95b3

Please sign in to comment.