简体   繁体   中英

Prettier with CSS settings in VS Code

I have the Prettier extension added to my VS Code editor.

When using Less or Sass, the default settings format code like this:

// Default

.parent_selector {
  .child_selector {
    color: red;
  }
}
// Desired Format

.parent_selector {

  .child_selector {
    color: red;
  }
}

How could I tweak the Prettier CSS settings to achieve this? I know it seems trivial, but in bigger code bases it helps readability.

As an alternative method; It can be achieved by using stylelint plugin and stylelint-config-standard rules.

npm install --save-dev stylelint stylelint-config-standard

After installing them, proceed with ctrl+shift+p on VS Code and run command: stylelint: fix all auto-fixable problems .

stylelint:修复所有可自动修复的问题

PS: Consider assigning a keyboard shortcut for stylelint: fix all auto-fixable problems command for easy access.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM