.editorconfig 365 B

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