Skip to content

Helps developers maintain consistent coding styles between different editors

License

Notifications You must be signed in to change notification settings

ulrikstrid/atom-editorconfig

 
 

Repository files navigation

EditorConfig

Atom package

EditorConfig helps developers maintain consistent coding styles between different editors

Install

$ apm install editorconfig

Or Settings → Packages → Search for editorconfig

Getting started

See the EditorConfig documentation.

Supported properties

  • root
  • indent_style
  • indent_size
  • charset (supported values: latin1, utf-8, utf-16be, utf-16le)

Features

  • Applies the above settings from your .editorconfig file
  • Syntax highlights .editorconfig files

Example file

root = true

[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

License

MIT © Sindre Sorhus

About

Helps developers maintain consistent coding styles between different editors

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • CoffeeScript 66.5%
  • JavaScript 33.5%