gocodebox/lifterlms-rest

View on GitHub
.editorconfig

Summary

Maintainability
Test Coverage
###
#
# This file is deployed into this repository via the "Sync Organization Files" workflow.
#
# Direct edits to this file are at risk of being overwritten by the next sync. All edits should be made
# to the source file.
#
# @see Sync workflow {@link https://github.com/gocodebox/.github/blob/trunk/.github/workflows/workflow-sync.yml}
# @see Workflow template {@link https://github.com/gocodebox/.github/blob/trunk/.github/workflow-templates/.editorconfig}
#
###

# This file is for unifying the coding style for different editors and IDEs
# editorconfig.org

# WordPress Coding Standards
# https://developer.wordpress.org/coding-standards/wordpress-coding-standards/

root = true

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

[*.{md,txt}]
insert_final_newline = false
trim_trailing_whitespace = false

[*.{md,json,yml,yml.template}]
indent_style = space
indent_size = 2