Skip to content

Commit d73219d

Browse files
feat: move library to typescript code generation (#317)
* move library to typescript * run synth tool * fix lint * include common resources proto * fix * fix: update timeout * fix: try this * rerun synthtool to pick up API changes * rerun synthtool * replace timeout in synth.py * feedback Co-authored-by: Alexander Fenster <[email protected]>
1 parent e1cecb6 commit d73219d

File tree

5 files changed

+6
-0
lines changed

5 files changed

+6
-0
lines changed

cloud-tasks/.eslintrc.yml

+2
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
rules:
33
no-console: off
44
node/no-missing-require: off
5+
parserOptions:
6+
ecmaVersion: 8

cloud-tasks/createHttpTask.js

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
// limitations under the License.
1414

1515
'use strict';
16+
/*eslint no-warning-comments: [0, { "terms": ["todo", "fixme"], "location": "anywhere" }]*/
1617

1718
// sample-metadata:
1819
// title: Cloud Tasks Create HTTP Target

cloud-tasks/createHttpTaskWithToken.js

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
// limitations under the License.
1414

1515
'use strict';
16+
/*eslint no-warning-comments: [0, { "terms": ["todo", "fixme"], "location": "anywhere" }]*/
1617

1718
// sample-metadata:
1819
// title: Cloud Tasks Create HTTP Target with Token

cloud-tasks/createTask.js

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
// limitations under the License.
1414

1515
'use strict';
16+
/*eslint no-warning-comments: [0, { "terms": ["todo", "fixme"], "location": "anywhere" }]*/
1617

1718
// sample-metadata:
1819
// title: Cloud Tasks Create App Engine Target

cloud-tasks/quickstart.js

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
// limitations under the License.
1414

1515
'use strict';
16+
/*eslint no-warning-comments: [0, { "terms": ["todo", "fixme"], "location": "anywhere" }]*/
1617

1718
/**
1819
* Create a task for a given queue with an arbitrary payload.

0 commit comments

Comments
 (0)