Skip to content

Commit

Permalink
Merge pull request #31 from IAM5K/feat/new-auth
Browse files Browse the repository at this point in the history
Feat/new auth
  • Loading branch information
IAM5K authored Apr 2, 2024
2 parents b2618a4 + 3de0acf commit c440189
Show file tree
Hide file tree
Showing 34 changed files with 2,126 additions and 3,732 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ insert_final_newline = true
trim_trailing_whitespace = true

[*.ts]
quote_type = single
quote_type = double

[*.md]
max_line_length = off
Expand Down
11 changes: 8 additions & 3 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
{
"htmlWhitespaceSensitivity": "ignore"
}

"htmlWhitespaceSensitivity": "ignore",
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"singleQuote": false,
"bracketSpacing": true,
"printWidth": 100
}
36 changes: 23 additions & 13 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,24 @@
{
"editor.defaultFormatter": "vscode.html-language-features",
"cSpell.words": [
"arize",
"Drucker",
"etags",
"maxlength"
],
"prettier.htmlWhitespaceSensitivity": "ignore",
"[github-actions-workflow]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}

}
"editor.defaultFormatter": "vscode.html-language-features",
"cSpell.words": ["arize", "Drucker", "etags", "maxlength"],
"editor.formatOnSave": true,
"prettier.htmlWhitespaceSensitivity": "ignore",
"[github-actions-workflow]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
Loading

0 comments on commit c440189

Please sign in to comment.