diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..4be6e01 --- /dev/null +++ b/.gitattributes @@ -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 \ No newline at end of file diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..2032440 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,8 @@ +{ + "recommendations": [ + "dart-code.dart-code", + "dart-code.flutter", + "mhutchie.git-graph", + "nhoizey.gremlins" + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..c54b83e --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,8 @@ +{ + "files.eol": "\n", + "editor.rulers": [ + 80,100,120 + ], + "dart.lineLength": 100, + "editor.tabSize": 2, +} \ No newline at end of file