Should not have unused variables JS-0128
Bug risk
Major
3 occurrences in this check
'thisCity' is assigned a value but never used
197
198  var latlon = null;
199  var dummyCity = null;
200  var thisCity = null;201  // if (
202  //   data["calisma_amaci"] !== "TÜRKİYE GENELİ HAVADAN JEOFİZİK ARAŞTIRMALAR"
203  // ) {
'dummyCity' is assigned a value but never used
196  });
197
198  var latlon = null;
199  var dummyCity = null;200  var thisCity = null;
201  // if (
202  //   data["calisma_amaci"] !== "TÜRKİYE GENELİ HAVADAN JEOFİZİK ARAŞTIRMALAR"
'citiesLatLongjson' is assigned a value but never used
  1const db = require("../models");
  2const Tutorial = db.tutorials;
  3const citiesLatLongjson = require("../cities_of_turkey.json");  4const { Workbook } = require("exceljs");
  5const fs = require("fs");
  6const utmObj = require("utm-latlng");