👋 @lydell!
After switching from TSLint to ESLint and your plugin, I've noticed that named imports are sorted differently. Your approach is case-sensitive, while TSLint's ordered-imports is not by default.
// tslint
import { a, B, c } from "somethiing";
// eslint-plugin-simple-import-sort
import { B, a, c } from "somethiing";
The former notation feels more natural to me. WDYT?
👋 @lydell!
After switching from TSLint to ESLint and your plugin, I've noticed that named imports are sorted differently. Your approach is case-sensitive, while TSLint's
ordered-importsis not by default.The former notation feels more natural to me. WDYT?