We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
no-unused-modules
1 parent f9d7e2b commit 3d33b70Copy full SHA for 3d33b70
src/rules/no-unused-modules.js
@@ -392,7 +392,6 @@ module.exports = {
392
}
393
394
exports = exportList.get(file)
395
- console.log('file: ', file)
396
397
// special case: export * from
398
const exportAll = exports.get(EXPORT_ALL_DECLARATION)
@@ -411,10 +410,8 @@ module.exports = {
411
410
412
413
const exportStatement = exports.get(exportedValue)
414
- console.log('exportStatement: ', exportStatement)
415
416
const value = exportedValue === IMPORT_DEFAULT_SPECIFIER ? DEFAULT : exportedValue
417
- console.log('value: ', value)
418
419
if (typeof exportStatement !== 'undefined'){
420
if (exportStatement.whereUsed.size < 1) {
0 commit comments