Skip to content

3.1.0

Compare
Choose a tag to compare
@simonhaenisch simonhaenisch released this 17 Aug 06:39
· 51 commits to master since this release

New Feature: Skip Destructive Code Actions

If you don't want destructive code actions (like removing unused imports), you can enable the option organizeImportsSkipDestructiveCodeActions via your Prettier config.

// prettierrc.js

module.exports = {
  // ...
  organizeImportsSkipDestructiveCodeActions: true,
};