.editorconfig 399 B

1234567891011121314151617
  1. # EditorConfig is awesome: http://EditorConfig.org
  2. # top-most EditorConfig file
  3. root = true
  4. # Tab indentation
  5. [*]
  6. indent_style = tab
  7. indent_size = 4
  8. trim_trailing_whitespace = true
  9. # The indent size used in the `package.json` file cannot be changed
  10. # https://github.com/npm/npm/pull/3180#issuecomment-16336516
  11. [{.travis.yml,npm-shrinkwrap.json,package.json}]
  12. indent_style = space
  13. indent_size = 2