This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function createDocument() { | |
var headers = Sheets.Spreadsheets.Values.get('sheet fileID', 'range for headers'); | |
var tactics = Sheets.Spreadsheets.Values.get('sheet fileID', 'range for data'); | |
var templateId = 'doc fileID'; | |
for(var i = 0; i < tactics.values.length; i++){ | |
var studentName = tactics.values[i][0]; | |
var startDate = tactics.values[i][1]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"eslint.validate": [ | |
"javascript" | |
], | |
"javascript.format.enable": false, | |
"eslint.alwaysShowStatus": true, | |
"eslint.options": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"eslint.validate": [ | |
"javascript" | |
], | |
"javascript.format.enable": false, | |
"eslint.alwaysShowStatus": true, | |
"eslint.options": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
registry=https://registry.npmjs.org/ | |
//registry.npmjs.org/:_authToken=MY_TOKEN_GOES_HERE |