I am using tslint with the default configuration tslint:recommendedand I want to adapt as few rules as possible.
Certain rules provide that imports must be in alphabetical order :
src/core/task/TaskMockDecorator.ts[2, 1]: Import sources within a group must be alphabetized.
src/core/task/taskRunner.ts[1, 16]: Named imports must be alphabetized.
I do not want to sort the import alphabetically by myself. Before disabling this listing: can WebStorm / PhpStorm do this for me?
source
share