From 92fe672d605b5ebc49a11bc2cd0fc80efc445e77 Mon Sep 17 00:00:00 2001 From: Jesse Date: Thu, 16 Dec 2021 11:47:14 -0500 Subject: [PATCH] remove console statement and some extra spacing, see https://github.com/phetsims/chipper/issues/1079 --- eslint/rules/default-import-match-filename.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/eslint/rules/default-import-match-filename.js b/eslint/rules/default-import-match-filename.js index c63a3a713..adb53743b 100644 --- a/eslint/rules/default-import-match-filename.js +++ b/eslint/rules/default-import-match-filename.js @@ -1,8 +1,6 @@ /* eslint-disable copyright*/ /** - * - * * Adapted/copied from rule in https://github.com/minseoksuh/eslint-plugin-consistent-default-export-name/blob/de812b2194ca9435920776119a7f732b596b4d8b/lib/rules/default-import-match-filename.js * Simplified and striped of some logic not needed for PhET's context. * @@ -145,7 +143,6 @@ module.exports = function( context ) { if ( !isCompatible( defaultImportName, filename ) ) { - console.log( node.source.value ); context.report( { node: defaultImportSpecifier, message: `Default import name does not match filename "${filename}".`