Changeset View
Changeset View
Standalone View
Standalone View
src/parser/PhutilEditorConfig.php
| <?php | <?php | ||||
| /** | /** | ||||
| * Parser for [[http://editorconfig.org/ | EditorConfig]] files. | * Parser for [[http://editorconfig.org/ | EditorConfig]] files. | ||||
| */ | */ | ||||
| final class PhutilEditorConfig { | final class PhutilEditorConfig extends Phobject { | ||||
| const CHARSET = 'charset'; | const CHARSET = 'charset'; | ||||
| const END_OF_LINE = 'end_of_line'; | const END_OF_LINE = 'end_of_line'; | ||||
| const INDENT_SIZE = 'indent_size'; | const INDENT_SIZE = 'indent_size'; | ||||
| const INDENT_STYLE = 'indent_style'; | const INDENT_STYLE = 'indent_style'; | ||||
| const FINAL_NEWLINE = 'insert_final_newline'; | const FINAL_NEWLINE = 'insert_final_newline'; | ||||
| const LINE_LENGTH = 'max_line_length'; | const LINE_LENGTH = 'max_line_length'; | ||||
| const TAB_WIDTH = 'tab_width'; | const TAB_WIDTH = 'tab_width'; | ||||
| ▲ Show 20 Lines • Show All 181 Lines • Show Last 20 Lines | |||||