File tree 10 files changed +38
-47
lines changed
10 files changed +38
-47
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "parserOptions": {
3
+ "ecmaVersion": 2018,
4
+ "sourceType": "module"
5
+ },
6
+
7
+ "env": {
8
+ "es6": true
9
+ }
10
+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : " ./node_modules/gts"
3
+ }
4
+
Original file line number Diff line number Diff line change 1
1
** /node_modules
2
- ** /coverage
3
- test /fixtures
2
+ ** /.coverage
4
3
build /
5
4
docs /
6
5
protos /
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ // Copyright 2020 Google LLC
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // http://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ // See the License for the specific language governing permissions and
13
+ // limitations under the License.
14
+
15
+ module . exports = {
16
+ ...require ( 'gts/.prettierrc.json' )
17
+ }
Original file line number Diff line number Diff line change 11
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
+
14
15
import express = require( 'express' ) ;
15
16
16
17
const PORT = Number ( process . env . PORT ) || 8080 ;
Original file line number Diff line number Diff line change 27
27
"wait-port" : " ^0.2.7" ,
28
28
"@types/express" : " ^4.16.0" ,
29
29
"chai" : " ^4.2.0" ,
30
- "tslint" : " ^6.0.0"
30
+ "tslint" : " ^6.0.0" ,
31
+ "typescript" : " ^3.8.3"
31
32
}
32
33
}
Original file line number Diff line number Diff line change 14
14
15
15
'use strict' ;
16
16
17
- /* eslint node/no-extraneous-require: "off" */
18
-
19
17
const assert = require ( 'assert' ) ;
20
18
const puppeteer = require ( 'puppeteer' ) ;
21
19
/* global document */
Original file line number Diff line number Diff line change 23
23
"eslint-plugin-node" : " ^11.0.0" ,
24
24
"eslint-plugin-prettier" : " ^3.1.0" ,
25
25
"eslint-plugin-promise" : " ^4.1.1" ,
26
+ "gts" : " ^2.0.0" ,
26
27
"prettier" : " ^2.0.0" ,
27
- "requestretry" : " ^4.0.0"
28
+ "requestretry" : " ^4.0.0" ,
29
+ "typescript" : " ^3.8.3"
28
30
}
29
31
}
You can’t perform that action at this time.
0 commit comments