Within my Angular2 application, I am importing a single component in the following manner:
import { PersonsSingleAccountComponent} from
'../persons-information/fragments/persons-single-account/persons-single-account-bookings/persons-single-account-bookings.component'
This is causing a lint error stating "Exceeds maximum line character". Attempting to enclose the statement in backticks (`) results in an error.
Is there a way to resolve this lint error?