Snowtrack / snowfs

Found single char variable name JS-C1002
Anti-pattern
Minor
2 occurrences in this check
Variable name is too small
543      const headName: string = repo.getHead().getName();
544
545      if (opts.output === 'json' || opts.output === 'json-pretty') {
546        const o = { commits, refs, head: repo.getHead().isDetached() ? headHash : headName };547
548        process.stdout.write(JSON.stringify(o, (key, value) => {
549          if (value instanceof Commit) {
Variable name is too small
415      const index: Index = getIndex(repo, opts.index);
416
417      if (opts.output === 'json' || opts.output === 'json-pretty') {
418        const o = { new: newe, modified, deleted };419
420        process.stdout.write(JSON.stringify(o, (key, value) => {
421          if (value instanceof StatusEntry) {