Skip to content

Commit 465ff21

Browse files
authored
Merge pull request #62 from bboure/feat/default-tempaltes
2 parents 4858453 + a02ce66 commit 465ff21

File tree

9 files changed

+658
-505
lines changed

9 files changed

+658
-505
lines changed

.all-contributorsrc

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
{
2+
"projectName": "serverless-appsync-simulator",
3+
"projectOwner": "bboure",
4+
"repoType": "github",
5+
"repoHost": "https://github.com",
6+
"files": [
7+
"README.md"
8+
],
9+
"imageSize": 100,
10+
"commit": true,
11+
"commitConvention": "none",
12+
"contributors": [
13+
{
14+
"login": "bboure",
15+
"name": "Benoît Bouré",
16+
"avatar_url": "https://avatars0.githubusercontent.com/u/7089997?v=4",
17+
"profile": "https://twitter.com/Benoit_Boure",
18+
"contributions": [
19+
"code"
20+
]
21+
},
22+
{
23+
"login": "FilipPyrek",
24+
"name": "Filip Pýrek",
25+
"avatar_url": "https://avatars1.githubusercontent.com/u/6282843?v=4",
26+
"profile": "http://filip.pyrek.cz/",
27+
"contributions": [
28+
"code"
29+
]
30+
},
31+
{
32+
"login": "marcoreni",
33+
"name": "Marco Reni",
34+
"avatar_url": "https://avatars2.githubusercontent.com/u/2797489?v=4",
35+
"profile": "https://github.com/marcoreni",
36+
"contributions": [
37+
"code"
38+
]
39+
},
40+
{
41+
"login": "EgorDm",
42+
"name": "Egor Dmitriev",
43+
"avatar_url": "https://avatars3.githubusercontent.com/u/4254771?v=4",
44+
"profile": "https://egordmitriev.net/",
45+
"contributions": [
46+
"code"
47+
]
48+
},
49+
{
50+
"login": "stschwark",
51+
"name": "Steffen Schwark",
52+
"avatar_url": "https://avatars3.githubusercontent.com/u/900253?v=4",
53+
"profile": "https://github.com/stschwark",
54+
"contributions": [
55+
"code"
56+
]
57+
},
58+
{
59+
"login": "moelholm",
60+
"name": "Nicky Moelholm",
61+
"avatar_url": "https://avatars2.githubusercontent.com/u/8393156?v=4",
62+
"profile": "https://github.com/moelholm",
63+
"contributions": [
64+
"code"
65+
]
66+
},
67+
{
68+
"login": "daisuke-awaji",
69+
"name": "g-awa",
70+
"avatar_url": "https://avatars0.githubusercontent.com/u/20736455?v=4",
71+
"profile": "https://github.com/daisuke-awaji",
72+
"contributions": [
73+
"code"
74+
]
75+
},
76+
{
77+
"login": "LMulveyCM",
78+
"name": "Lee Mulvey",
79+
"avatar_url": "https://avatars0.githubusercontent.com/u/39565663?v=4",
80+
"profile": "https://github.com/LMulveyCM",
81+
"contributions": [
82+
"code"
83+
]
84+
},
85+
{
86+
"login": "JimmyHurrah",
87+
"name": "Jimmy Hurrah",
88+
"avatar_url": "https://avatars1.githubusercontent.com/u/6367753?v=4",
89+
"profile": "https://github.com/JimmyHurrah",
90+
"contributions": [
91+
"code"
92+
]
93+
},
94+
{
95+
"login": "abdala",
96+
"name": "Abdala",
97+
"avatar_url": "https://avatars1.githubusercontent.com/u/219340?v=4",
98+
"profile": "https://abda.la/",
99+
"contributions": [
100+
"ideas"
101+
]
102+
}
103+
],
104+
"contributorsPerLine": 7
105+
}

.babelrc

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
{
22
"plugins": [
3-
"@babel/plugin-transform-modules-commonjs"
3+
"@babel/plugin-transform-modules-commonjs",
4+
["babel-plugin-inline-import", {
5+
"extensions": [
6+
".vtl"
7+
]
8+
}]
49
],
510
"presets": [
611
["@babel/preset-env",

.eslintrc.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
env:
22
browser: true
33
es6: true
4-
extends: airbnb-base
4+
extends:
5+
- prettier
6+
- plugin:prettier/recommended
57
globals:
68
Atomics: readonly
79
SharedArrayBuffer: readonly
810
parserOptions:
911
ecmaVersion: 2018
1012
sourceType: module
1113
parser: babel-eslint
12-
rules:
13-
no-console: off

0 commit comments

Comments
 (0)