Skip to content

Commit a0471a0

Browse files
committed
docs(PHILOSOPHY): remove mixed style case
1 parent d356396 commit a0471a0

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

PHILOSOPHY.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ These edge cases are handled in a way that is consistent with the principles abo
5858
| --------------------------------------- | -------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
5959
| Empty lines | `a,b\n\nc` | Empty lines may be a result of a misconfiguration or an error in the data. The parser should fail-fast to avoid cascading errors. |
6060
| Inconsistent row lengths | `a,b\nc,d,e` | Fail-fast on inconsistent row lengths to ensure data integrity. Each row should have the same number of fields. |
61-
| Mixed styles | `'a',"b"` or `a,b\n1;2` | Fail-fast on mixed character styles to ensure consistency in parsing. The parser should not attempt to guess the style. |
6261
| Backslash escaping | `a\,b``["a,b"]` or `a,"\"",c``["a,\"", "c"]` | Backslash escaping is currently unsupported as it is not part of the RFC 4180 standard and could lead to ambiguity. |
6362
| Fields with comment-style trailing text | `a,b # note` | Trailing comments are parsed verbatim and as part of the field. This should be avoided to prevent ambiguity. |
6463

0 commit comments

Comments
 (0)