gitextract_4wguoljj/ ├── .coveralls.yml ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ └── push.yml ├── .gitignore ├── .pre-commit-hooks.yaml ├── .ruby-version ├── .standard_todo.yml ├── Appraisals ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── Gemfile ├── LICENSE.md ├── README.md ├── Rakefile ├── bin/ │ ├── create_schema │ └── csvlint ├── csvlint.gemspec ├── docker_notes_for_windows.txt ├── features/ │ ├── check_format.feature │ ├── cli.feature │ ├── csv_options.feature │ ├── csvupload.feature │ ├── csvw_schema_validation.feature │ ├── fixtures/ │ │ ├── cr-line-endings.csv │ │ ├── crlf-line-endings.csv │ │ ├── inconsistent-line-endings-unquoted.csv │ │ ├── inconsistent-line-endings.csv │ │ ├── invalid-byte-sequence.csv │ │ ├── invalid_many_rows.csv │ │ ├── lf-line-endings.csv │ │ ├── spreadsheet.xls │ │ ├── spreadsheet.xlsx │ │ ├── title-row.csv │ │ ├── valid.csv │ │ ├── valid_many_rows.csv │ │ ├── w3.org/ │ │ │ └── .well-known/ │ │ │ └── csvm │ │ ├── white space in filename.csv │ │ └── windows-line-endings.csv │ ├── information.feature │ ├── parse_csv.feature │ ├── schema_validation.feature │ ├── sources.feature │ ├── step_definitions/ │ │ ├── cli_steps.rb │ │ ├── csv_options_steps.rb │ │ ├── information_steps.rb │ │ ├── parse_csv_steps.rb │ │ ├── schema_validation_steps.rb │ │ ├── sources_steps.rb │ │ ├── validation_errors_steps.rb │ │ ├── validation_info_steps.rb │ │ └── validation_warnings_steps.rb │ ├── support/ │ │ ├── aruba.rb │ │ ├── earl_formatter.rb │ │ ├── env.rb │ │ ├── load_tests.rb │ │ └── webmock.rb │ ├── validation_errors.feature │ ├── validation_info.feature │ └── validation_warnings.feature ├── gemfiles/ │ ├── activesupport_5.2.gemfile │ ├── activesupport_6.0.gemfile │ ├── activesupport_6.1.gemfile │ ├── activesupport_7.0.gemfile │ ├── activesupport_7.1.gemfile │ └── activesupport_7.2.gemfile ├── lib/ │ ├── csvlint/ │ │ ├── cli.rb │ │ ├── csvw/ │ │ │ ├── column.rb │ │ │ ├── date_format.rb │ │ │ ├── metadata_error.rb │ │ │ ├── number_format.rb │ │ │ ├── property_checker.rb │ │ │ ├── table.rb │ │ │ └── table_group.rb │ │ ├── error_collector.rb │ │ ├── error_message.rb │ │ ├── field.rb │ │ ├── schema.rb │ │ ├── validate.rb │ │ └── version.rb │ └── csvlint.rb └── spec/ ├── csvw/ │ ├── column_spec.rb │ ├── date_format_spec.rb │ ├── number_format_spec.rb │ ├── table_group_spec.rb │ └── table_spec.rb ├── field_spec.rb ├── schema_spec.rb ├── spec_helper.rb └── validator_spec.rb