Yongmin Hong
0e1656da0c
Summary: Submitting three changes at once for lazyness: meta: config cleanups Add editorconfig, gitignore, and conform to them. RobotsTxt: add differential rule and conform to the editorconfig time.php: add metadata, editorconfig conformance Signed-off-by: Yongmin Hong <revi@omglol.email> Test Plan: `code .` and edit files. for php files, deploy. Reviewers: #acl_sudoers, #blessed_reviewers, revi Reviewed By: #acl_sudoers, #blessed_reviewers, revi Differential Revision: https://issuetracker.revi.xyz/D8
32 lines
582 B
INI
32 lines
582 B
INI
# EditorConfig is awesome: https://EditorConfig.org
|
|
|
|
root = true
|
|
|
|
[*]
|
|
charset = utf-8
|
|
end_of_line = lf
|
|
indent_size = tab
|
|
indent_style = tab
|
|
insert_final_newline = true
|
|
tab_width = 4
|
|
trim_trailing_whitespace = true
|
|
|
|
[*.md]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
# Tabs may not be valid YAML
|
|
# @see https://yaml.org/spec/1.2/spec.html#id2777534
|
|
[*.{yml,yaml}]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
# yaml-lint configuration
|
|
# YAML files should be indented with spaces, which .yamllint is
|
|
[.yamllint]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
[.git/**]
|
|
indent_style = space
|
|
indent_size = 2
|