Skip to content

Commit

Permalink
🎉 Start the project with some basic scaffolding!
Browse files Browse the repository at this point in the history
Added some super basic stuff with authentication, token store, and basic interaction with copilot chat
  • Loading branch information
darkdarcool committed Feb 10, 2024
0 parents commit e15c619
Show file tree
Hide file tree
Showing 10 changed files with 2,652 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

root = true

[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
indent_style = space
indent_size = 4
max_line_length = 120

[*.md]
# double whitespace at end of line
# denotes a line break in Markdown
trim_trailing_whitespace = false

[*.yml]
indent_size = 2
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
Loading

0 comments on commit e15c619

Please sign in to comment.