phorge/.editorconfig
Christopher Speck ec9ebe532e Addressing some PHP 8 incompatibilities - Remarkup
Summary:
Updating compatibility for PHP 8.2 for remarkup-related functionality.

This also resolves an issue introduced by https://secure.phabricator.com/D21860. Of all the flags when opening the zip the one I chose was not introduced in 5.2 but in 7.4

Test Plan: I rendered comments using figlet, cowsay, images, object references.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin, epriestley

Differential Revision: https://secure.phabricator.com/D21866
2023-05-28 23:11:56 -04:00

35 lines
720 B
INI

; http://editorconfig.org/
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 80
[.arclint]
max_line_length = unset
[resources/sql/**.sql]
max_line_length = unset
[scripts/install/install_*.sh]
max_line_length = unset
[src/applications/differential/parser/__tests__/data/*.diff]
trim_trailing_whitespace = false
[src/applications/differential/parser/__tests__/messages/long-title.txt]
max_line_length = unset
[src/applications/diffusion/ssh/__tests__/hgwiredata/*.txt]
max_line_length = unset
[externals/**]
indent_style = unset
indent_size = unset
trim_trailing_whitespace = false
insert_final_newline = false