Search code examples
angulartypescripttslint

TSLint Error "Exceeds maximum line length of 120"


In my Angular2 App I'm importing one component like this:

import { PersonsSingleAccountComponent} from 
   '../persons-information/fragments/persons-single-account/persons-single-account-bookings/persons-single-account-bookings.component'

It is giving me the lint error "Exceeds maximum line character". If I try to give the statement in ``(backtick) it is throwing an error.

How can I solve this lint error?


Solution

  • It's not really something you can change, not related to your code.

    You should simply disable the rule for this import by adding a comment before :

    // tslint:disable-next-line:max-line-length
    import { PersonsSingleAccountComponent} from '../persons-information/fragments/persons-single-account/persons-single-account-bookings/persons-single-account-bookings.component'