You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The dev team recently agreed (in phetsims/chipper#1166) to make the import identifer match the file name (minus its suffix). And there will (soon?) be a lint rule that enforces this for image files. That convention is not being followed for image imports in this sim.
gameScreenIconImage does not match game_screen_icon_png.
Two alternatives:
// rename the image fileimportgameScreenIcon_pngfrom'../../images/gameScreenIcon_png.js';// rename the import identifierimportgame_screen_icon_pngfrom'../../images/game_screen_icon_png.js';
The text was updated successfully, but these errors were encountered:
Related to #84.
The dev team recently agreed (in phetsims/chipper#1166) to make the
import
identifer match the file name (minus its suffix). And there will (soon?) be a lint rule that enforces this for image files. That convention is not being followed for image imports in this sim.For example, in NumberPlayGameScreen.js:
gameScreenIconImage
does not matchgame_screen_icon_png
.Two alternatives:
The text was updated successfully, but these errors were encountered: