Skip to content

Commit

Permalink
Ignore a particular unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
eweitz committed Aug 17, 2019
1 parent 79f13ac commit 0226d3f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/js/parsers/expression-matrix-parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ export class ExpressionMatrixParser {

return new Promise(function(resolve) {
ideo.fetch(ensemblData, 'text').then(function(data) {
var tsvLines, i, start, stop, gene, chr, length;
// eslint-disable-next-line no-unused-vars
var tsvLines, i, start, stop, gene, chr, length, geneType;

tsvLines = data.split(/\r\n|\n/).slice(1);
for (i = 0; i < tsvLines.length; i++) {
Expand Down

0 comments on commit 0226d3f

Please sign in to comment.