Ensures that string literals aren't used for accessing @wordpress/data
stores when using API methods. The store definition is promoted as the preferred way of referencing registered stores.
Examples of incorrect code for this rule:
import { select } from '@wordpress/data';
const blockTypes = select( 'core/blocks' ).getBlockTypes();
Examples of correct code for this rule:
import { store as blocksStore } from '@wordpress/blocks';
import { select } from '@wordpress/data';
const blockTypes = select( blocksStore ).getBlockTypes();