I am importing a file:
import { BodyTableHeaderExampleModule } from '../../components/example-table/example-table-header/example-table-header-xxxx/example-table-header-xxxxx.module';
However, tslint is complaining that the line exceeds 100 characters. When I try to minimize line length, by doing the following:
import { BodyTableHeaderExampleModule } from '../../components/example-table/example-table-header/' +
'example-table-header-xxxx/example-table-header-xxxxx.module';
I receive the following tslint errors:
ERROR: 11:92 semicolon Missing semicolon
ERROR: 11:93 no-unused-expression unused expression, expected an assignment or function call
Any suggestions on a way to remedy the Exceeds maximum line length of 100
when using long Typescript file imports, would be more than appreciated. Thank you.