├── .editorconfig ├── .gitignore ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── cli ├── CMakeLists.txt └── cli.in ├── cmake ├── almostcat.cmake ├── ec_sort.cmake └── runandsort.cmake ├── filetree ├── CMakeLists.txt ├── parent_directory.in ├── parent_directory │ └── parent_directory.in ├── path_separator.in ├── path_with_special_[chars │ └── path_with_special_chars.in ├── root_file.in ├── root_file │ └── root_file.in ├── root_mixed │ └── root_file.in ├── unset.in └── unset │ └── unset.in ├── glob ├── CMakeLists.txt ├── braces.in ├── brackets.in ├── question.in ├── star.in ├── star_star.in └── utf8char.in ├── meta ├── CMakeLists.txt ├── meta.in ├── sample.cmake └── sample.txt ├── parser ├── CMakeLists.txt ├── basic.in ├── bom.in ├── comments.in ├── comments_and_newlines.in ├── comments_only.in ├── crlf.in ├── empty.in ├── empty_values.in ├── leading_slash.in ├── limits.in ├── newlines_only.in └── whitespace.in └── properties ├── CMakeLists.txt ├── indent_size_default.in ├── lowercase_names.in ├── lowercase_values.in └── tab_width_default.in /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/README.md -------------------------------------------------------------------------------- /cli/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/cli/CMakeLists.txt -------------------------------------------------------------------------------- /cli/cli.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/cli/cli.in -------------------------------------------------------------------------------- /cmake/almostcat.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/cmake/almostcat.cmake -------------------------------------------------------------------------------- /cmake/ec_sort.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/cmake/ec_sort.cmake -------------------------------------------------------------------------------- /cmake/runandsort.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/cmake/runandsort.cmake -------------------------------------------------------------------------------- /filetree/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/filetree/CMakeLists.txt -------------------------------------------------------------------------------- /filetree/parent_directory.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/filetree/parent_directory.in -------------------------------------------------------------------------------- /filetree/parent_directory/parent_directory.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/filetree/parent_directory/parent_directory.in -------------------------------------------------------------------------------- /filetree/path_separator.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/filetree/path_separator.in -------------------------------------------------------------------------------- /filetree/path_with_special_[chars/path_with_special_chars.in: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [test.a] 4 | key=value 5 | -------------------------------------------------------------------------------- /filetree/root_file.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/filetree/root_file.in -------------------------------------------------------------------------------- /filetree/root_file/root_file.in: -------------------------------------------------------------------------------- 1 | root = true 2 | -------------------------------------------------------------------------------- /filetree/root_mixed/root_file.in: -------------------------------------------------------------------------------- 1 | root = TrUe 2 | ignore = false 3 | 4 | [*.a] 5 | child=true 6 | -------------------------------------------------------------------------------- /filetree/unset.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/filetree/unset.in -------------------------------------------------------------------------------- /filetree/unset/unset.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/filetree/unset/unset.in -------------------------------------------------------------------------------- /glob/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/glob/CMakeLists.txt -------------------------------------------------------------------------------- /glob/braces.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/glob/braces.in -------------------------------------------------------------------------------- /glob/brackets.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/glob/brackets.in -------------------------------------------------------------------------------- /glob/question.in: -------------------------------------------------------------------------------- 1 | ; test ? 2 | 3 | root=true 4 | 5 | [som?.c] 6 | key=value 7 | 8 | -------------------------------------------------------------------------------- /glob/star.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/glob/star.in -------------------------------------------------------------------------------- /glob/star_star.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/glob/star_star.in -------------------------------------------------------------------------------- /glob/utf8char.in: -------------------------------------------------------------------------------- 1 | ; test EditorConfig files with UTF-8 characters larger than 127 2 | 3 | root = true 4 | 5 | [中文.txt] 6 | key = value 7 | -------------------------------------------------------------------------------- /meta/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/meta/CMakeLists.txt -------------------------------------------------------------------------------- /meta/meta.in: -------------------------------------------------------------------------------- 1 | [meta.c] 2 | answer=42 3 | -------------------------------------------------------------------------------- /meta/sample.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/meta/sample.cmake -------------------------------------------------------------------------------- /meta/sample.txt: -------------------------------------------------------------------------------- 1 | b;f 2 | b;c 3 | b;e 4 | a;b 5 | c;b;a 6 | d 7 | 0 8 | -------------------------------------------------------------------------------- /parser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/parser/CMakeLists.txt -------------------------------------------------------------------------------- /parser/basic.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/parser/basic.in -------------------------------------------------------------------------------- /parser/bom.in: -------------------------------------------------------------------------------- 1 | ; test EditorConfig files with BOM 2 | 3 | root = true 4 | 5 | [*] 6 | key = value 7 | -------------------------------------------------------------------------------- /parser/comments.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/parser/comments.in -------------------------------------------------------------------------------- /parser/comments_and_newlines.in: -------------------------------------------------------------------------------- 1 | 2 | # Just comments 3 | 4 | # ... and newlines 5 | -------------------------------------------------------------------------------- /parser/comments_only.in: -------------------------------------------------------------------------------- 1 | # Just a comment, nothing else -------------------------------------------------------------------------------- /parser/crlf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/parser/crlf.in -------------------------------------------------------------------------------- /parser/empty.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parser/empty_values.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/parser/empty_values.in -------------------------------------------------------------------------------- /parser/leading_slash.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/parser/leading_slash.in -------------------------------------------------------------------------------- /parser/limits.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/parser/limits.in -------------------------------------------------------------------------------- /parser/newlines_only.in: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /parser/whitespace.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/parser/whitespace.in -------------------------------------------------------------------------------- /properties/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/properties/CMakeLists.txt -------------------------------------------------------------------------------- /properties/indent_size_default.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/properties/indent_size_default.in -------------------------------------------------------------------------------- /properties/lowercase_names.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/properties/lowercase_names.in -------------------------------------------------------------------------------- /properties/lowercase_values.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/properties/lowercase_values.in -------------------------------------------------------------------------------- /properties/tab_width_default.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-test/HEAD/properties/tab_width_default.in --------------------------------------------------------------------------------