Skip to content

Commit 932ecad

Browse files
committed
updated gitignore
1 parent 0d3af15 commit 932ecad

File tree

1 file changed

+60
-11
lines changed

1 file changed

+60
-11
lines changed

.gitignore

Lines changed: 60 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,65 @@
1-
# Optional npm cache directory
2-
.npm
1+
# Miscellaneous
2+
*.class
3+
*.log
4+
*.pyc
5+
*.swp
6+
.DS_Store
7+
.atom/
8+
.buildlog/
9+
.history
10+
.svn/
11+
.metadata
312

4-
# Optional eslint cache
5-
.eslintcache
6-
7-
# dotenv environment variables file
13+
# Env
814
.env
9-
.env.test
1015

11-
node_modules/
16+
# Node
17+
node_modules
18+
19+
# IntelliJ related
20+
*.iml
21+
*.ipr
22+
*.iws
23+
.idea/
24+
25+
# The .vscode folder contains launch configuration and tasks you configure in
26+
# VS Code which you may wish to be included in version control, so this line
27+
# is commented out by default.
28+
.vscode/
29+
30+
# Flutter/Dart/Pub related
31+
**/doc/api/
32+
**/ios/Flutter/.last_build_id
33+
.dart_tool/
34+
.flutter-plugins
35+
.flutter-plugins-dependencies
36+
.packages
37+
.pub-cache/
38+
.pub/
39+
/build/
40+
41+
# Web related
42+
lib/generated_plugin_registrant.dart
43+
44+
# Symbolication related
45+
app.*.symbols
46+
47+
# Obfuscation related
48+
app.*.map.json
49+
50+
# Exceptions to above rules.
51+
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
1252

13-
# keys
14-
key.json
15-
keyfile.json
53+
# Logs
54+
logs
55+
*.log
56+
npm-debug.log*
57+
yarn-debug.log*
58+
yarn-error.log*
59+
firebase-debug.log*
1660

61+
# Firebase
62+
.firebase/
63+
.firebaserc
64+
firebase-debug.log
65+
firebaseconfig.json

0 commit comments

Comments
 (0)