Skip to content

Commit 1ccc780

Browse files
authored
Hotfix trailing comma (#280)
1 parent 383b3fa commit 1ccc780

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Configuration/EditorConfig/EditorConfigFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function parse(string $editorConfigFileContents): EditorConfig
4444
trimTrailingWhitespace: $this->field($config, 'trim_trailing_whitespace', $this->id(...)),
4545
insertFinalNewline: $this->field($config, 'insert_final_newline', $this->id(...)),
4646
maxLineLength: $this->field($config, 'max_line_length', $this->id(...)),
47-
quoteType: $config['quote_type'] ?? null,
47+
quoteType: $config['quote_type'] ?? null
4848
);
4949
}
5050

0 commit comments

Comments
 (0)