Lin
Lin
We could add tilda check [here](https://github.com/renke/import-sort/blob/master/packages/import-sort/src/style/StyleAPI.ts#L175) @renke are you willing to make such change?
According to [validate-npm-package-name](https://github.com/npm/validate-npm-package-name): > package name should not contain any of the following characters: `~)('!*` So it's safe to do such change
We can let user define function `isAbsolute(path)` or regex `absolutePathRegex` We can use `jsconfig.json` syntax: ```js "paths": { "~/*" : ["./src/*"] } ``` Or even implement something like `eslint-import-resolver-webpack`