Skip to content

Commit

Permalink
Add Git and VSCode settings
Browse files Browse the repository at this point in the history
  • Loading branch information
TechAurelian committed Apr 18, 2024
1 parent 55e3bc6 commit bda7593
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Normalize line endings to LF for all files considered text by Git
* text=auto eol=lf

# Never perform LF normalization on these files
*.ico binary
*.jar binary
*.png binary
*.zip binary
8 changes: 8 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"recommendations": [
"dart-code.dart-code",
"dart-code.flutter",
"mhutchie.git-graph",
"nhoizey.gremlins"
]
}
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"files.eol": "\n",
"editor.rulers": [
80,100,120
],
"dart.lineLength": 100,
"editor.tabSize": 2,
}

0 comments on commit bda7593

Please sign in to comment.