1
0
mirror of https://github.com/flarum/core.git synced 2025-08-19 23:01:56 +02:00

chore: flarum-cli audit infra --fix

This commit is contained in:
Alexander Skvortsov
2022-01-20 03:33:49 -05:00
parent 068c513966
commit 2e68c53af1
5 changed files with 66 additions and 47 deletions

View File

@@ -1,24 +1,19 @@
# EditorConfig makes it easy to maintain the correct coding style
# when switching between different text editors and projects.
# http://editorconfig.org/
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org
# Top-most EditorConfig file. Do not search in parent directories.
root = true
# Set two space indentation, line endings to Unix (LF) with a final newline,
# default charset to UTF-8, and trim trailing whitespace in all files.
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
indent_size = 2
# Set four space indentation in JSON and PHP files.
[*.{json,php}]
indent_size = 4
# Do not trim trailing whitespace in Markdown files.
[*.md]
[*.{diff,md}]
trim_trailing_whitespace = false
[*.{php,xml,json}]
indent_size = 4