lovata/oc-toolbox-plugin

View on GitHub
.editorconfig

Summary

Maintainability
Test Coverage
# Defining consistent coding styles between different editors and IDEs
# Support info @ http://editorconfig.org/#download
# editorconfig.org

# Top-most EditorConfig file
root = true

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

# CSS settings
[*.css]
indent_size = 2

# YAML settings
[*.yml]
indent_size = 2

# Markdown settings
[*.md]
trim_trailing_whitespace = false

# Resetting rules for third-party libraries
# [{lib/**.js, lib/**.css}]
# charset = unset
# end_of_line = unset
# trim_trailing_whitespace = unset
# insert_final_newline = unset
# indent_style = unset
# indent_size = unset