Skip to content

KeenS/stylefmt.el

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 

Repository files navigation

stylefmt.el

An emacs interface for stylefmt, gofmt inspired style code formatter.

Installation

Install stylefmt

npm install -g stylefmt

then

M-x stylefmt-enable-on-save

in css editing buffer.

Optinally add to your init.el

(add-hook 'css-mode-hook 'stylefmt-enable-on-save)

Example

      @media screen and (    min-width :699px)
 {.foo    +       .bar,.hoge{
    font-size   :12px      !   important   ;  ~       .fuga     {
      padding      : 10px       5px;
   color:green;
 >p

 {
        line-height             : 1.5          ;
      }}}
     }


.class,           #id
 {     color       : blue;

  border        :solid  #ddd                1px}

yields

@media screen and (min-width: 699px) {
  .foo + .bar,
  .hoge {
    font-size: 12px !important;

    ~ .fuga {
      padding: 10px 5px;
      color: green;

      > p {
        line-height: 1.5;
      }
    }
  }
}


.class,
#id {
  color: blue;
  border: 1px solid #ddd;
}

About

cssfmt wrapper for emacs,which is a gofmt like code formatter

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published