Skip to content

Commit 422305e

Browse files
committed
initial commit
1 parent 81616cd commit 422305e

Some content is hidden

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

49 files changed

+1617
-0
lines changed

.babelrc

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"sourceMap": true,
3+
"sourceRoot": "src",
4+
"moduleIds": false,
5+
"comments": false,
6+
"compact": false,
7+
"code": true,
8+
"presets": [
9+
["es2015", {"loose": true}],
10+
"stage-1"
11+
],
12+
"plugins": [
13+
"syntax-flow",
14+
"transform-decorators-legacy",
15+
"transform-flow-strip-types"
16+
]
17+
}

.editorconfig

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
# Unix-style newlines with a newline ending every file
7+
[*]
8+
end_of_line = lf
9+
insert_final_newline = true
10+
# 2 space indentation
11+
indent_style = space
12+
indent_size = 2

.eslintrc.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "./node_modules/aurelia-tools/.eslintrc.json"
3+
}

.gitignore

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# You may want to customise this file depending on your Operating System
2+
# and the editor that you use.
3+
#
4+
# We recommend that you use a Global Gitignore for files that are not related
5+
# to the project. (https://help.github.com/articles/ignoring-files/#create-a-global-gitignore)
6+
7+
# OS
8+
#
9+
# Ref: https://github.com/github/gitignore/blob/master/Global/macOS.gitignore
10+
# Ref: https://github.com/github/gitignore/blob/master/Global/Windows.gitignore
11+
# Ref: https://github.com/github/gitignore/blob/master/Global/Linux.gitignore
12+
.DS_STORE
13+
Thumbs.db
14+
15+
# Editors
16+
#
17+
# Ref: https://github.com/github/gitignore/blob/master/Global
18+
# Ref: https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore
19+
# Ref: https://github.com/github/gitignore/blob/master/Global/VisualStudioCode.gitignore
20+
.idea
21+
22+
# Dependencies
23+
node_modules
24+
25+
# Compiled files
26+
scripts

.vscode/settings.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"json.schemas": [
3+
{
4+
"fileMatch": [
5+
"**/aurelia.json"
6+
],
7+
"url": "./aurelia_json-schema.json"
8+
}
9+
]
10+
}

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Aurelia.json schema
2+
3+
A schema to describe the aurelia.json files. This project includes a predefined settings setup
4+
for VSCode so go into your `aurelia.json` file and enjoy proper autocompletion and intellisense.

0 commit comments

Comments
 (0)