Skip to content

Commit 6651f19

Browse files
lint fix πŸ˜’
2 parents 4e5929a + ada0c18 commit 6651f19

File tree

5 files changed

+530
-28
lines changed

5 files changed

+530
-28
lines changed

β€Žapi/functions/.eslintignoreβ€Ž

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules/
2+
firebase
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
firebase
2+
*.json

β€Žapi/functions/.prettierrcβ€Ž

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"singleQuote": false,
3+
"printWidth": 80,
4+
"trailingComma": "all",
5+
"endOfLine": "auto"
6+
}

β€Žapi/functions/package.jsonβ€Ž

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "dzcode.io-api",
3+
"version": "1.0.0",
34
"scripts": {
45
"build": "tsc",
56
"build:watch": "tsc --watch",
@@ -10,7 +11,7 @@
1011
"logs": "firebase functions:log"
1112
},
1213
"engines": {
13-
"node": "8"
14+
"node": ">8"
1415
},
1516
"main": "lib/index.js",
1617
"dependencies": {

0 commit comments

Comments
Β (0)