
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
prettier-plugin-sort-imports
Advanced tools
A prettier plugin that sorts import statements by either their length or alphabetically.
Example:

npm install --save-dev prettier-plugin-sort-imports
The plugin will be loaded by Prettier automatically. No configuration needed. It will sort by import statement length by default.
prettier.config.js in your project's root directory.module.exports = {
// For prettier 3
sortingMethod: 'lineLength',
plugins: ['./node_modules/prettier-plugin-sort-imports/dist/index.js'],
};
module.exports = {
// For prettier 2
sortingMethod: 'lineLength',
pluginSearchDirs: ['./node_modules'],
plugins: ['./node_modules/prettier-plugin-sort-imports/dist/index.2.js'],
};
When combined with other prettier plugins that also modify the way JS/TS are formatted (such as prettier-plugin-tailwindcss) some issues may occur. See this issue for more details and the fix.
sortingMethod: 'alphabetical' | 'lineLength' (default) - What to sort the individual lines by. alphabetical sorts by the import path and lineLength sorts by the length of the import. Note that alphabetical sorting looks at the whole import path, so imports starting with ../ are ranked lower.sortingOrder: 'ascending' | 'descending' (default) - Determines the order of imports. If set to 'ascending', imports will be sorted in ascending order and vice versa.stripNewlines: true | false (default). Determines whether newlines between blocks of imports are stripped. If the only thing between two blocks is whitespace or comments, the whitespace will be stripped and the blocks are sorted as one big one. The comment sticks to whichever import it was above initially.importTypeOrder: ('NPMPackages' | 'localImportsValue' | 'localImportsType' | 'localImports' | 'all')[]. An array that determines the order in which different import types are sorted. The default is ['all'], which does no sorting of different import types. Import type are sorted according to the order in which they appear in this array. Note that, other than the 'all' type, you can not specify an imcomplete array. See different types for which other types they can be combined with. Explanations of different types:
'NPMPackages': All NPM packges that are listed in your package.json fall into this category. If you have multiple package.json files you can specify them using the packageJSONFiles option. Can only be used with one of the other local import types (either 'localImportsValue', 'localImportsType' or 'localImports')'localImportsValue': All local imports that are declared with a value import foo from './foo' falls into this category. Can only be used if NPMPackages is also specified and if localImportsType is also specified.'localImportsType': All local imports that are imported as a type. import type foo from './foo' falls into this category. Only available in typecript. Can only be used if NPMPackages is also specified and if localImportsValue is also specified.'localImports': All local imports that are declared with a value or a type. import foo from './foo' and import type foo from './foo' both fall into this category. Can only be used if NPMPackages is also specified.'all': All imports fall into this category.packageJSONFiles: string[]. Set to ['package.json'] by default. Lists the package.json files to be used for the 'NPMPackages' import type. Note that if you specified ['all'] for the importTypeOrder option (or specified none at all), this is not used.newlineBetweenTypes: boolean. Set to false by default. Determines whether a newline should be inserted between different import types.Files containing the string // sort-imports-ignore are skipped. You can also ignore sections by using // sort-imports-begin-ignore and // sort-imports-end-ignore.
sortingOrder option to sort imports in ascending or descending order.prettierrc.mjs and prettier.config.mjs to the list of possible config filespackage.json files were not resolved relative to prettier config file but only to CWDpackage.json files was not try-catchedFAQs
A prettier plugin for sorting imports by length
The npm package prettier-plugin-sort-imports receives a total of 16,693 weekly downloads. As such, prettier-plugin-sort-imports popularity was classified as popular.
We found that prettier-plugin-sort-imports demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.