File tree Expand file tree Collapse file tree 2 files changed +58
-0
lines changed Expand file tree Collapse file tree 2 files changed +58
-0
lines changed Original file line number Diff line number Diff line change 1+ # Editor configuration, see https://editorconfig.org
2+ root = true
3+
4+ [* ]
5+ charset = utf-8
6+ indent_style = space
7+ indent_size = 2
8+ insert_final_newline = true
9+ trim_trailing_whitespace = true
10+
11+ [* .ts ]
12+ quote_type = single
13+
14+ [* .md ]
15+ max_line_length = off
16+ trim_trailing_whitespace = false
Original file line number Diff line number Diff line change 1+ # See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
2+
3+ # Compiled output
4+ /dist
5+ /tmp
6+ /out-tsc
7+ /bazel-out
8+
9+ # Node
10+ /node_modules
11+ npm-debug.log
12+ yarn-error.log
13+
14+ # IDEs and editors
15+ .idea /
16+ .project
17+ .classpath
18+ .c9 /
19+ * .launch
20+ .settings /
21+ * .sublime-workspace
22+
23+ # Visual Studio Code
24+ .vscode /*
25+ ! .vscode /settings.json
26+ ! .vscode /tasks.json
27+ ! .vscode /launch.json
28+ ! .vscode /extensions.json
29+ .history /*
30+
31+ # Miscellaneous
32+ /.angular /cache
33+ .sass-cache /
34+ /connect.lock
35+ /coverage
36+ /libpeerconnection.log
37+ testem.log
38+ /typings
39+
40+ # System files
41+ .DS_Store
42+ Thumbs.db
You can’t perform that action at this time.
0 commit comments