csvlint icon indicating copy to clipboard operation
csvlint copied to clipboard

library and command line tool that validates a CSV file

Results 11 csvlint issues
Sort by recently updated
recently updated
newest added

When running `go get` as suggested by readme, the go cmd returns: ``` go: go.mod file not found in current directory or any parent directory. 'go get' is no longer...

I have a shell script that tests the conversion of JSON to CSV that I'd like to use with `csvlint` but I don't want to force the script to save...

I have a CSV file encoded with UTF8-BOM: ``` "first_column","second_column" "Hello","how are you" ``` This is a correct CSV file but there is the result: ```Record #0 has error: bare...

csvlint is extremely useful but it only takes uncompressed csv files as input. It would be even more useful if it could take gzipped csv file as input either directly...

enhancement request = I downloaded my "data" from LinkedIn and at least some of it is in some sort of utf-8, or unicode with BOM and tab delimiter. Would it...

Hi, I'm running csvlint as follows: ``` ./csvlint large_csv.csv ``` I get: ``` $ ./csvlint large_csv.csv Record #13361 has error: wrong number of fields in line ``` Is there a...

PR for #29 to return no. of processed records when invoking `Validate` function

It would be nice if the [`Validate`](https://github.com/Clever/csvlint/blob/master/linter.go#L25) function can return no. of processed records

This is useful to integrate with text editor.

Do you can to add a win32 binary version?