Skip to content

Commit 3bf68df

Browse files
committed
Copy new skeleton app
1 parent 1c6782c commit 3bf68df

File tree

111 files changed

+7582
-2840
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+7582
-2840
lines changed

.editorconfig

100644100755
+7-9
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
1-
# @w3tec
2-
# http://editorconfig.org
1+
# EditorConfig is awesome: http://EditorConfig.org
32

3+
# top-most EditorConfig file
44
root = true
55

6+
# Unix-style newlines with a newline ending every file
67
[*]
7-
charset = utf-8
8-
indent_style = space
9-
indent_size = 2
108
end_of_line = lf
119
insert_final_newline = true
12-
trim_trailing_whitespace = true
1310

14-
[*.md]
15-
insert_final_newline = false
16-
trim_trailing_whitespace = false
11+
# 2 space indentation
12+
[**.*]
13+
indent_style = space
14+
indent_size = 2

.gitignore

+6-39
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,7 @@
1-
# @w3tec
2-
3-
# Logs #
4-
logs
5-
*.log
6-
*.log*
7-
8-
# Coverage directory used by tools like istanbul #
9-
/test/coverage
10-
11-
# Node Files #
12-
/node_modules
13-
/bower_components
14-
npm-debug.log
15-
16-
# OS generated files #
17-
.DS_Store
18-
Thumbs.db
19-
20-
# Typing #
21-
/typings/
22-
23-
# Dist #
1+
node_modules
2+
.DS_STORE
3+
npm-debug.log*
4+
yarn-error.log
245
/dist
25-
26-
# Docs #
27-
/docs
28-
29-
# Cordova #
30-
cordova/plugins
31-
cordova/platforms
32-
cordova/www
33-
www/
34-
plugins/
35-
platforms/
36-
37-
# IDE #
38-
.idea/
39-
*.swp
40-
.awcache
6+
/test/*coverage
7+
/.chrome

.travis.yml

-19
This file was deleted.

.vscode/extensions.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"recommendations": [
3+
"AureliaEffect.aurelia",
4+
"msjsdiag.debugger-for-chrome",
5+
"steoates.autoimport",
6+
"EditorConfig.EditorConfig",
7+
"christian-kohler.path-intellisense",
8+
"behzad88.Aurelia"
9+
]
10+
}

.vscode/launch.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
// Use IntelliSense to find out which attributes exist for node debugging
3+
// Use hover for the description of the existing attributes
4+
// For further information visit https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Chrome",
9+
"type": "chrome",
10+
"request": "launch",
11+
"url": "http://localhost:8080",
12+
"webRoot": "${workspaceRoot}/src",
13+
"userDataDir": "${workspaceRoot}/.chrome",
14+
"sourceMapPathOverrides": {
15+
"webpack:///./src/*": "${webRoot}/*"
16+
}
17+
}
18+
]
19+
}

.vscode/settings.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Place your settings in this file to overwrite default and user settings.
2+
{
3+
"typescript.tsdk": "node_modules/typescript/lib"
4+
}

LICENSE

-21
This file was deleted.

0 commit comments

Comments
 (0)