eslint-plugin-0001
v0.0.0
Published
This plugin contains rule to check for consistent imports
Downloads
1
Maintainers
Readme
eslint-plugin-consistent-import
// FAIL
import Product from "../../ProductComponent"
import Booking from "../../BookingDuck"
// PASS
import ProductComponent from "../../ProductComponent"
import BookingDuck from "../../BookingDuck"