From a5400e5498d6cabf08401cab65a778c4f876b0f3 Mon Sep 17 00:00:00 2001 From: Dan Wolf Date: Mon, 18 Jun 2018 22:39:45 -0400 Subject: [PATCH] fix gitignore --- .gitignore | 47 ++++++++++++++++++++++++++++++++++++- Web/ClientApp/.editorconfig | 13 ---------- Web/ClientApp/.gitignore | 44 ---------------------------------- 3 files changed, 46 insertions(+), 58 deletions(-) delete mode 100644 Web/ClientApp/.editorconfig delete mode 100644 Web/ClientApp/.gitignore diff --git a/.gitignore b/.gitignore index 7ed7406..f28ed38 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,49 @@ *.csproj.user /.vs bin/ -obj/ \ No newline at end of file +obj/ + +# See http://help.github.com/ignore-files/ for more about ignoring files. + +# compiled output +dist/ +dist-server/ +tmp/ +out-tsc/ + +# dependencies +node_modules/ + +# IDEs and editors +/.idea +.project +.classpath +.c9/ +*.launch +.settings/ +*.sublime-workspace + +# IDE - VSCode +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json + +# misc +/.sass-cache +/connect.lock +/coverage +/libpeerconnection.log +npm-debug.log +yarn-error.log +testem.log +/typings + +# e2e +/e2e/*.js +/e2e/*.map + +# System Files +.DS_Store +Thumbs.db diff --git a/Web/ClientApp/.editorconfig b/Web/ClientApp/.editorconfig deleted file mode 100644 index 6e87a00..0000000 --- a/Web/ClientApp/.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -# Editor configuration, see http://editorconfig.org -root = true - -[*] -charset = utf-8 -indent_style = space -indent_size = 2 -insert_final_newline = true -trim_trailing_whitespace = true - -[*.md] -max_line_length = off -trim_trailing_whitespace = false diff --git a/Web/ClientApp/.gitignore b/Web/ClientApp/.gitignore deleted file mode 100644 index eabf65e..0000000 --- a/Web/ClientApp/.gitignore +++ /dev/null @@ -1,44 +0,0 @@ -# See http://help.github.com/ignore-files/ for more about ignoring files. - -# compiled output -/dist -/dist-server -/tmp -/out-tsc - -# dependencies -/node_modules - -# IDEs and editors -/.idea -.project -.classpath -.c9/ -*.launch -.settings/ -*.sublime-workspace - -# IDE - VSCode -.vscode/* -!.vscode/settings.json -!.vscode/tasks.json -!.vscode/launch.json -!.vscode/extensions.json - -# misc -/.sass-cache -/connect.lock -/coverage -/libpeerconnection.log -npm-debug.log -yarn-error.log -testem.log -/typings - -# e2e -/e2e/*.js -/e2e/*.map - -# System Files -.DS_Store -Thumbs.db