File tree 4 files changed +384
-201
lines changed
4 files changed +384
-201
lines changed Original file line number Diff line number Diff line change
1
+ # EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs
2
+ # editorconfig.org
3
+
4
+ root = true
5
+
6
+ [* ]
7
+ indent_style = space
8
+ indent_size = 2
9
+
10
+ # We recommend you to keep these unchanged
11
+ end_of_line = lf
12
+ charset = utf-8
13
+ trim_trailing_whitespace = true
14
+ insert_final_newline = true
15
+
16
+ [* .md ]
17
+ trim_trailing_whitespace = false
Original file line number Diff line number Diff line change
1
+ # Specifies files to intentionally ignore when using Git
2
+ # http://git-scm.com/docs/gitignore
3
+
4
+ .idea
5
+ .DS_Store
6
+ * .swp
7
+ Thumbs.db
8
+ app /.tmp /
9
+ app /node_modules /
10
+ app /platforms /
11
+ app /plugins /
12
+ app /src /assets /vendor /bower_components /
13
+ app /src /config /config-overrides-generated.ts
14
+ app /www /
15
+ api /dist /
16
+ api /lambda /config-generated.js
17
+ api /lambda /node_modules /
18
+ api /later /
19
+ api /node_modules /
20
+ api /npm-debug. *
21
+ api /swagger /generated
22
+ api /swagger /Spacefinder-exported.yml
23
+ app /src /config /config.ts
24
+
25
+ # These files are auto-generated by the deployment scripts
26
+ api /lambda /environment.js
27
+ app /src /config /config-overrides-generated.ts
You can’t perform that action at this time.
0 commit comments