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
const lineItemLabels = ['Item Amount', 'Description', 'Unit Price', 'Unit Quantity']; | |
const lintIssues = [] | |
export function lint(response) { | |
let all_record_annotations = []; | |
if (response.annotations && response.records) { | |
for (const record of response.records) { | |
if(record.annotations) { | |
for (const ann in record.annotations) { | |
all_record_annotations.push(ann.ref); |
OlderNewer