├── .cmake-format.py ├── .eslintrc.js ├── .flake8 ├── .gitignore ├── .pep8 ├── .sparse-export ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.rst ├── apt-requirements.txt ├── cmakelang ├── BUILD ├── CMakeLists.txt ├── README.rst ├── __init__.py ├── annotate.py ├── command_tests │ ├── BUILD │ ├── CMakeLists.txt │ ├── __init__.py │ ├── __main__.py │ ├── add_custom_command_tests.cmake │ ├── add_executable_tests.cmake │ ├── add_executable_tests.py │ ├── add_library_tests.cmake │ ├── add_library_tests.py │ ├── comment_tests.cmake │ ├── conditional_tests.cmake │ ├── custom_command_tests.cmake │ ├── export_tests.cmake │ ├── external_project_tests.cmake │ ├── file_tests.cmake │ ├── foreach_tests.cmake │ ├── install_tests.cmake │ ├── misc_tests.cmake │ ├── misc_tests.py │ ├── set_target_properties_tests.cmake │ └── set_tests.cmake ├── common.py ├── config_util.py ├── configuration.py ├── contrib │ ├── BUILD │ ├── CMakeLists.txt │ ├── __init__.py │ ├── entity_ca.txt │ ├── individual_ca.txt │ ├── sign_ca.py │ ├── signature_db.json │ ├── validate_database.py │ └── validate_pullrequest.py ├── ctest_to.py ├── doc │ ├── .readthedocs.yml │ ├── BUILD │ ├── CMakeLists.txt │ ├── MANIFEST.in │ ├── README.rst │ ├── __init__.py │ ├── bits │ │ └── dump-example.cmake │ ├── changelog.rst │ ├── cmake-annotate.rst │ ├── cmake-format.rst │ ├── cmake-lint.rst │ ├── conf.py │ ├── configopts.rst │ ├── configuration.rst │ ├── contributing.rst │ ├── ctest-to.rst │ ├── custom_parsers.rst │ ├── format-algorithm.rst │ ├── format-case_studies.rst │ ├── format-example.rst │ ├── format-features.rst │ ├── format-usage.rst │ ├── index.rst │ ├── installation.rst │ ├── lint-example.rst │ ├── lint-inline.rst │ ├── lint-notes.rst │ ├── lint-summary.rst │ ├── lint-usage.rst │ ├── modules.rst │ ├── parse-algorithm.rst │ ├── parse-automatic.rst │ ├── parse-tree.rst │ ├── release-pipeline.svg │ ├── release_notes.rst │ ├── release_process.rst │ └── rtd-requirements.txt.in ├── format │ ├── BUILD │ ├── __init__.py │ ├── __main__.py │ ├── formatter.py │ ├── invocation_tests.py │ ├── layout_tests.py │ └── testdata │ │ ├── cmake-format-split-1.py │ │ ├── cmake-format-split-2.py │ │ ├── cmake-format.json │ │ ├── cmake-format.py │ │ ├── cmake-format.yaml │ │ ├── test_in.cmake │ │ ├── test_invalid.cmake │ │ ├── test_latin1_in.cmake │ │ ├── test_latin1_out.cmake │ │ ├── test_lineend_unix.cmake │ │ ├── test_lineend_win.cmake │ │ └── test_out.cmake ├── genparsers.py ├── lex │ ├── BUILD │ ├── __init__.py │ ├── __main__.py │ └── tests.py ├── lint │ ├── BUILD │ ├── CMakeLists.txt │ ├── __init__.py │ ├── __main__.py │ ├── basic_checker.py │ ├── gendocs.py │ ├── lint_util.py │ ├── lintdb.py │ ├── test │ │ ├── BUILD │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── execution_tests.py │ │ ├── expect_lint.cmake │ │ ├── expect_tests.py │ │ ├── genfiles.py │ │ └── lint_tests.cmake │ └── tools │ │ ├── __init__.py │ │ └── analyze_naming.py ├── markup.py ├── markup_tests.py ├── parse │ ├── BUILD │ ├── __init__.py │ ├── additional_nodes.py │ ├── argument_nodes.py │ ├── body_nodes.py │ ├── common.py │ ├── funs │ │ ├── __init__.py │ │ ├── add_executable.py │ │ ├── add_library.py │ │ ├── add_xxx.py │ │ ├── break.py │ │ ├── deprecated.py │ │ ├── external_project.py │ │ ├── fetch_content.py │ │ ├── file.py │ │ ├── foreach.py │ │ ├── install.py │ │ ├── list.py │ │ ├── miscellaneous.py │ │ ├── random.py │ │ ├── set.py │ │ ├── set_target_properties.py │ │ ├── standard_builtins.py │ │ ├── standard_funs.py │ │ └── standard_modules.py │ ├── printer.py │ ├── properties.py │ ├── simple_nodes.py │ ├── statement_node.py │ ├── tests.py │ ├── util.py │ └── variables.py ├── patches │ └── 02-additional-whitespace-features.patch ├── pypi │ ├── MANIFEST.in │ └── setup.py ├── render.py ├── templates │ ├── layout.html.tpl │ └── style.css ├── test │ ├── BUILD │ ├── CMakeLists.txt │ ├── __init__.py │ ├── command_db_test.py │ ├── config_include_test.py │ ├── screw_users_test.py │ └── version_number_test.py ├── tests.py ├── tools │ ├── __init__.py │ ├── bump_version.py │ ├── ensure_docker_tag.py │ ├── ensure_precommit_tag.py │ ├── gen_config_details.py │ ├── generate_missing_parsers.py │ ├── parse_cmake_help.py │ ├── properties.jinja.py │ ├── split_help.py │ ├── usage_lexer.py │ ├── usage_parser.py │ └── variables.jinja.py └── vscode_extension │ ├── .gitattributes │ ├── .gitignore │ ├── .vscodeignore │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── images │ ├── cmake-format-logo.png │ ├── cmake-format-logo.xcf │ └── small_demo.gif │ ├── notes.md │ ├── package-lock.json │ ├── package.json │ ├── src │ └── extension.ts │ ├── tsconfig.json │ └── tslint.json ├── doc ├── conf.py ├── find_rst.py └── sphinx-static │ └── css │ └── cheshire_theme.css ├── go-requirements.txt ├── pip-requirements.txt ├── pylintrc ├── setup.py └── tangent ├── CMakeLists.txt ├── __init__.py └── tooling ├── CMakeLists.txt ├── __init__.py ├── broadway_run.py ├── check_pbuilderrc.py ├── clean_stage.py ├── cmake_post.py ├── debhelp.py ├── deploy_keys ├── cmake-format.enc ├── cmakelang-docker.enc ├── cmakelang-precommit.enc ├── cmakelang-pypi-tokens.json.enc └── cmakelang-rtd.enc ├── export_sparse_subrepo.py ├── gen_rtd_requirements.py ├── gendoc.py ├── generate_style_manifest.py ├── get_release_notes.py ├── get_version_from_header.py ├── get_wheel_name.py ├── github.py ├── gtkdoc_helper.py ├── install_debug_symbols.py ├── sync_sparse.py ├── vscode_varsub.py └── write_pypirc.py /.cmake-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/.cmake-format.py -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/.gitignore -------------------------------------------------------------------------------- /.pep8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/.pep8 -------------------------------------------------------------------------------- /.sparse-export: -------------------------------------------------------------------------------- 1 | cmakelang 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | cmakelang/doc/README.rst -------------------------------------------------------------------------------- /apt-requirements.txt: -------------------------------------------------------------------------------- 1 | pandoc 2 | golang-1.13 3 | ninja-build 4 | -------------------------------------------------------------------------------- /cmakelang/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/BUILD -------------------------------------------------------------------------------- /cmakelang/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/CMakeLists.txt -------------------------------------------------------------------------------- /cmakelang/README.rst: -------------------------------------------------------------------------------- 1 | doc/README.rst -------------------------------------------------------------------------------- /cmakelang/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/__init__.py -------------------------------------------------------------------------------- /cmakelang/annotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/annotate.py -------------------------------------------------------------------------------- /cmakelang/command_tests/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/command_tests/BUILD -------------------------------------------------------------------------------- /cmakelang/command_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/command_tests/CMakeLists.txt -------------------------------------------------------------------------------- /cmakelang/command_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/command_tests/__init__.py -------------------------------------------------------------------------------- /cmakelang/command_tests/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/command_tests/__main__.py -------------------------------------------------------------------------------- /cmakelang/command_tests/add_custom_command_tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/command_tests/add_custom_command_tests.cmake -------------------------------------------------------------------------------- /cmakelang/command_tests/add_executable_tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/command_tests/add_executable_tests.cmake -------------------------------------------------------------------------------- /cmakelang/command_tests/add_executable_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/command_tests/add_executable_tests.py -------------------------------------------------------------------------------- /cmakelang/command_tests/add_library_tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/command_tests/add_library_tests.cmake -------------------------------------------------------------------------------- /cmakelang/command_tests/add_library_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/command_tests/add_library_tests.py -------------------------------------------------------------------------------- /cmakelang/command_tests/comment_tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/command_tests/comment_tests.cmake -------------------------------------------------------------------------------- /cmakelang/command_tests/conditional_tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/command_tests/conditional_tests.cmake -------------------------------------------------------------------------------- /cmakelang/command_tests/custom_command_tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/command_tests/custom_command_tests.cmake -------------------------------------------------------------------------------- /cmakelang/command_tests/export_tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/command_tests/export_tests.cmake -------------------------------------------------------------------------------- /cmakelang/command_tests/external_project_tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/command_tests/external_project_tests.cmake -------------------------------------------------------------------------------- /cmakelang/command_tests/file_tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/command_tests/file_tests.cmake -------------------------------------------------------------------------------- /cmakelang/command_tests/foreach_tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/command_tests/foreach_tests.cmake -------------------------------------------------------------------------------- /cmakelang/command_tests/install_tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/command_tests/install_tests.cmake -------------------------------------------------------------------------------- /cmakelang/command_tests/misc_tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/command_tests/misc_tests.cmake -------------------------------------------------------------------------------- /cmakelang/command_tests/misc_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/command_tests/misc_tests.py -------------------------------------------------------------------------------- /cmakelang/command_tests/set_target_properties_tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/command_tests/set_target_properties_tests.cmake -------------------------------------------------------------------------------- /cmakelang/command_tests/set_tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/command_tests/set_tests.cmake -------------------------------------------------------------------------------- /cmakelang/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/common.py -------------------------------------------------------------------------------- /cmakelang/config_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/config_util.py -------------------------------------------------------------------------------- /cmakelang/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/configuration.py -------------------------------------------------------------------------------- /cmakelang/contrib/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/contrib/BUILD -------------------------------------------------------------------------------- /cmakelang/contrib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/contrib/CMakeLists.txt -------------------------------------------------------------------------------- /cmakelang/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmakelang/contrib/entity_ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/contrib/entity_ca.txt -------------------------------------------------------------------------------- /cmakelang/contrib/individual_ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/contrib/individual_ca.txt -------------------------------------------------------------------------------- /cmakelang/contrib/sign_ca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/contrib/sign_ca.py -------------------------------------------------------------------------------- /cmakelang/contrib/signature_db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/contrib/signature_db.json -------------------------------------------------------------------------------- /cmakelang/contrib/validate_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/contrib/validate_database.py -------------------------------------------------------------------------------- /cmakelang/contrib/validate_pullrequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/contrib/validate_pullrequest.py -------------------------------------------------------------------------------- /cmakelang/ctest_to.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/ctest_to.py -------------------------------------------------------------------------------- /cmakelang/doc/.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/.readthedocs.yml -------------------------------------------------------------------------------- /cmakelang/doc/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/BUILD -------------------------------------------------------------------------------- /cmakelang/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/CMakeLists.txt -------------------------------------------------------------------------------- /cmakelang/doc/MANIFEST.in: -------------------------------------------------------------------------------- 1 | ${_manifest_text} 2 | -------------------------------------------------------------------------------- /cmakelang/doc/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/README.rst -------------------------------------------------------------------------------- /cmakelang/doc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmakelang/doc/bits/dump-example.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/bits/dump-example.cmake -------------------------------------------------------------------------------- /cmakelang/doc/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/changelog.rst -------------------------------------------------------------------------------- /cmakelang/doc/cmake-annotate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/cmake-annotate.rst -------------------------------------------------------------------------------- /cmakelang/doc/cmake-format.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/cmake-format.rst -------------------------------------------------------------------------------- /cmakelang/doc/cmake-lint.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/cmake-lint.rst -------------------------------------------------------------------------------- /cmakelang/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/conf.py -------------------------------------------------------------------------------- /cmakelang/doc/configopts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/configopts.rst -------------------------------------------------------------------------------- /cmakelang/doc/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/configuration.rst -------------------------------------------------------------------------------- /cmakelang/doc/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/contributing.rst -------------------------------------------------------------------------------- /cmakelang/doc/ctest-to.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/ctest-to.rst -------------------------------------------------------------------------------- /cmakelang/doc/custom_parsers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/custom_parsers.rst -------------------------------------------------------------------------------- /cmakelang/doc/format-algorithm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/format-algorithm.rst -------------------------------------------------------------------------------- /cmakelang/doc/format-case_studies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/format-case_studies.rst -------------------------------------------------------------------------------- /cmakelang/doc/format-example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/format-example.rst -------------------------------------------------------------------------------- /cmakelang/doc/format-features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/format-features.rst -------------------------------------------------------------------------------- /cmakelang/doc/format-usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/format-usage.rst -------------------------------------------------------------------------------- /cmakelang/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/index.rst -------------------------------------------------------------------------------- /cmakelang/doc/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/installation.rst -------------------------------------------------------------------------------- /cmakelang/doc/lint-example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/lint-example.rst -------------------------------------------------------------------------------- /cmakelang/doc/lint-inline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/lint-inline.rst -------------------------------------------------------------------------------- /cmakelang/doc/lint-notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/lint-notes.rst -------------------------------------------------------------------------------- /cmakelang/doc/lint-summary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/lint-summary.rst -------------------------------------------------------------------------------- /cmakelang/doc/lint-usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/lint-usage.rst -------------------------------------------------------------------------------- /cmakelang/doc/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/modules.rst -------------------------------------------------------------------------------- /cmakelang/doc/parse-algorithm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/parse-algorithm.rst -------------------------------------------------------------------------------- /cmakelang/doc/parse-automatic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/parse-automatic.rst -------------------------------------------------------------------------------- /cmakelang/doc/parse-tree.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/parse-tree.rst -------------------------------------------------------------------------------- /cmakelang/doc/release-pipeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/release-pipeline.svg -------------------------------------------------------------------------------- /cmakelang/doc/release_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/release_notes.rst -------------------------------------------------------------------------------- /cmakelang/doc/release_process.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/release_process.rst -------------------------------------------------------------------------------- /cmakelang/doc/rtd-requirements.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/doc/rtd-requirements.txt.in -------------------------------------------------------------------------------- /cmakelang/format/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/format/BUILD -------------------------------------------------------------------------------- /cmakelang/format/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmakelang/format/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/format/__main__.py -------------------------------------------------------------------------------- /cmakelang/format/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/format/formatter.py -------------------------------------------------------------------------------- /cmakelang/format/invocation_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/format/invocation_tests.py -------------------------------------------------------------------------------- /cmakelang/format/layout_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/format/layout_tests.py -------------------------------------------------------------------------------- /cmakelang/format/testdata/cmake-format-split-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/format/testdata/cmake-format-split-1.py -------------------------------------------------------------------------------- /cmakelang/format/testdata/cmake-format-split-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/format/testdata/cmake-format-split-2.py -------------------------------------------------------------------------------- /cmakelang/format/testdata/cmake-format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/format/testdata/cmake-format.json -------------------------------------------------------------------------------- /cmakelang/format/testdata/cmake-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/format/testdata/cmake-format.py -------------------------------------------------------------------------------- /cmakelang/format/testdata/cmake-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/format/testdata/cmake-format.yaml -------------------------------------------------------------------------------- /cmakelang/format/testdata/test_in.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/format/testdata/test_in.cmake -------------------------------------------------------------------------------- /cmakelang/format/testdata/test_invalid.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/format/testdata/test_invalid.cmake -------------------------------------------------------------------------------- /cmakelang/format/testdata/test_latin1_in.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/format/testdata/test_latin1_in.cmake -------------------------------------------------------------------------------- /cmakelang/format/testdata/test_latin1_out.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/format/testdata/test_latin1_out.cmake -------------------------------------------------------------------------------- /cmakelang/format/testdata/test_lineend_unix.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/format/testdata/test_lineend_unix.cmake -------------------------------------------------------------------------------- /cmakelang/format/testdata/test_lineend_win.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/format/testdata/test_lineend_win.cmake -------------------------------------------------------------------------------- /cmakelang/format/testdata/test_out.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/format/testdata/test_out.cmake -------------------------------------------------------------------------------- /cmakelang/genparsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/genparsers.py -------------------------------------------------------------------------------- /cmakelang/lex/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/lex/BUILD -------------------------------------------------------------------------------- /cmakelang/lex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/lex/__init__.py -------------------------------------------------------------------------------- /cmakelang/lex/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/lex/__main__.py -------------------------------------------------------------------------------- /cmakelang/lex/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/lex/tests.py -------------------------------------------------------------------------------- /cmakelang/lint/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/lint/BUILD -------------------------------------------------------------------------------- /cmakelang/lint/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/lint/CMakeLists.txt -------------------------------------------------------------------------------- /cmakelang/lint/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmakelang/lint/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/lint/__main__.py -------------------------------------------------------------------------------- /cmakelang/lint/basic_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/lint/basic_checker.py -------------------------------------------------------------------------------- /cmakelang/lint/gendocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/lint/gendocs.py -------------------------------------------------------------------------------- /cmakelang/lint/lint_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/lint/lint_util.py -------------------------------------------------------------------------------- /cmakelang/lint/lintdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/lint/lintdb.py -------------------------------------------------------------------------------- /cmakelang/lint/test/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/lint/test/BUILD -------------------------------------------------------------------------------- /cmakelang/lint/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmakelang/lint/test/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/lint/test/__main__.py -------------------------------------------------------------------------------- /cmakelang/lint/test/execution_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/lint/test/execution_tests.py -------------------------------------------------------------------------------- /cmakelang/lint/test/expect_lint.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/lint/test/expect_lint.cmake -------------------------------------------------------------------------------- /cmakelang/lint/test/expect_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/lint/test/expect_tests.py -------------------------------------------------------------------------------- /cmakelang/lint/test/genfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/lint/test/genfiles.py -------------------------------------------------------------------------------- /cmakelang/lint/test/lint_tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/lint/test/lint_tests.cmake -------------------------------------------------------------------------------- /cmakelang/lint/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmakelang/lint/tools/analyze_naming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/lint/tools/analyze_naming.py -------------------------------------------------------------------------------- /cmakelang/markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/markup.py -------------------------------------------------------------------------------- /cmakelang/markup_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/markup_tests.py -------------------------------------------------------------------------------- /cmakelang/parse/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/BUILD -------------------------------------------------------------------------------- /cmakelang/parse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/__init__.py -------------------------------------------------------------------------------- /cmakelang/parse/additional_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/additional_nodes.py -------------------------------------------------------------------------------- /cmakelang/parse/argument_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/argument_nodes.py -------------------------------------------------------------------------------- /cmakelang/parse/body_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/body_nodes.py -------------------------------------------------------------------------------- /cmakelang/parse/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/common.py -------------------------------------------------------------------------------- /cmakelang/parse/funs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/funs/__init__.py -------------------------------------------------------------------------------- /cmakelang/parse/funs/add_executable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/funs/add_executable.py -------------------------------------------------------------------------------- /cmakelang/parse/funs/add_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/funs/add_library.py -------------------------------------------------------------------------------- /cmakelang/parse/funs/add_xxx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/funs/add_xxx.py -------------------------------------------------------------------------------- /cmakelang/parse/funs/break.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/funs/break.py -------------------------------------------------------------------------------- /cmakelang/parse/funs/deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/funs/deprecated.py -------------------------------------------------------------------------------- /cmakelang/parse/funs/external_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/funs/external_project.py -------------------------------------------------------------------------------- /cmakelang/parse/funs/fetch_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/funs/fetch_content.py -------------------------------------------------------------------------------- /cmakelang/parse/funs/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/funs/file.py -------------------------------------------------------------------------------- /cmakelang/parse/funs/foreach.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/funs/foreach.py -------------------------------------------------------------------------------- /cmakelang/parse/funs/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/funs/install.py -------------------------------------------------------------------------------- /cmakelang/parse/funs/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/funs/list.py -------------------------------------------------------------------------------- /cmakelang/parse/funs/miscellaneous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/funs/miscellaneous.py -------------------------------------------------------------------------------- /cmakelang/parse/funs/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/funs/random.py -------------------------------------------------------------------------------- /cmakelang/parse/funs/set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/funs/set.py -------------------------------------------------------------------------------- /cmakelang/parse/funs/set_target_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/funs/set_target_properties.py -------------------------------------------------------------------------------- /cmakelang/parse/funs/standard_builtins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/funs/standard_builtins.py -------------------------------------------------------------------------------- /cmakelang/parse/funs/standard_funs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/funs/standard_funs.py -------------------------------------------------------------------------------- /cmakelang/parse/funs/standard_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/funs/standard_modules.py -------------------------------------------------------------------------------- /cmakelang/parse/printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/printer.py -------------------------------------------------------------------------------- /cmakelang/parse/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/properties.py -------------------------------------------------------------------------------- /cmakelang/parse/simple_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/simple_nodes.py -------------------------------------------------------------------------------- /cmakelang/parse/statement_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/statement_node.py -------------------------------------------------------------------------------- /cmakelang/parse/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/tests.py -------------------------------------------------------------------------------- /cmakelang/parse/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/util.py -------------------------------------------------------------------------------- /cmakelang/parse/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/parse/variables.py -------------------------------------------------------------------------------- /cmakelang/patches/02-additional-whitespace-features.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/patches/02-additional-whitespace-features.patch -------------------------------------------------------------------------------- /cmakelang/pypi/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/pypi/MANIFEST.in -------------------------------------------------------------------------------- /cmakelang/pypi/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/pypi/setup.py -------------------------------------------------------------------------------- /cmakelang/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/render.py -------------------------------------------------------------------------------- /cmakelang/templates/layout.html.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/templates/layout.html.tpl -------------------------------------------------------------------------------- /cmakelang/templates/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/templates/style.css -------------------------------------------------------------------------------- /cmakelang/test/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/test/BUILD -------------------------------------------------------------------------------- /cmakelang/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/test/CMakeLists.txt -------------------------------------------------------------------------------- /cmakelang/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmakelang/test/command_db_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/test/command_db_test.py -------------------------------------------------------------------------------- /cmakelang/test/config_include_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/test/config_include_test.py -------------------------------------------------------------------------------- /cmakelang/test/screw_users_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/test/screw_users_test.py -------------------------------------------------------------------------------- /cmakelang/test/version_number_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/test/version_number_test.py -------------------------------------------------------------------------------- /cmakelang/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/tests.py -------------------------------------------------------------------------------- /cmakelang/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmakelang/tools/bump_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/tools/bump_version.py -------------------------------------------------------------------------------- /cmakelang/tools/ensure_docker_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/tools/ensure_docker_tag.py -------------------------------------------------------------------------------- /cmakelang/tools/ensure_precommit_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/tools/ensure_precommit_tag.py -------------------------------------------------------------------------------- /cmakelang/tools/gen_config_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/tools/gen_config_details.py -------------------------------------------------------------------------------- /cmakelang/tools/generate_missing_parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/tools/generate_missing_parsers.py -------------------------------------------------------------------------------- /cmakelang/tools/parse_cmake_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/tools/parse_cmake_help.py -------------------------------------------------------------------------------- /cmakelang/tools/properties.jinja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/tools/properties.jinja.py -------------------------------------------------------------------------------- /cmakelang/tools/split_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/tools/split_help.py -------------------------------------------------------------------------------- /cmakelang/tools/usage_lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/tools/usage_lexer.py -------------------------------------------------------------------------------- /cmakelang/tools/usage_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/tools/usage_parser.py -------------------------------------------------------------------------------- /cmakelang/tools/variables.jinja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/tools/variables.jinja.py -------------------------------------------------------------------------------- /cmakelang/vscode_extension/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/vscode_extension/.gitattributes -------------------------------------------------------------------------------- /cmakelang/vscode_extension/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode-test/ 2 | *.vsix 3 | node_modules 4 | out 5 | -------------------------------------------------------------------------------- /cmakelang/vscode_extension/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/vscode_extension/.vscodeignore -------------------------------------------------------------------------------- /cmakelang/vscode_extension/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/vscode_extension/CHANGELOG.md -------------------------------------------------------------------------------- /cmakelang/vscode_extension/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/vscode_extension/CMakeLists.txt -------------------------------------------------------------------------------- /cmakelang/vscode_extension/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/vscode_extension/LICENSE -------------------------------------------------------------------------------- /cmakelang/vscode_extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/vscode_extension/README.md -------------------------------------------------------------------------------- /cmakelang/vscode_extension/images/cmake-format-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/vscode_extension/images/cmake-format-logo.png -------------------------------------------------------------------------------- /cmakelang/vscode_extension/images/cmake-format-logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/vscode_extension/images/cmake-format-logo.xcf -------------------------------------------------------------------------------- /cmakelang/vscode_extension/images/small_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/vscode_extension/images/small_demo.gif -------------------------------------------------------------------------------- /cmakelang/vscode_extension/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/vscode_extension/notes.md -------------------------------------------------------------------------------- /cmakelang/vscode_extension/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/vscode_extension/package-lock.json -------------------------------------------------------------------------------- /cmakelang/vscode_extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/vscode_extension/package.json -------------------------------------------------------------------------------- /cmakelang/vscode_extension/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/vscode_extension/src/extension.ts -------------------------------------------------------------------------------- /cmakelang/vscode_extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/vscode_extension/tsconfig.json -------------------------------------------------------------------------------- /cmakelang/vscode_extension/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/cmakelang/vscode_extension/tslint.json -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/find_rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/doc/find_rst.py -------------------------------------------------------------------------------- /doc/sphinx-static/css/cheshire_theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/doc/sphinx-static/css/cheshire_theme.css -------------------------------------------------------------------------------- /go-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/go-requirements.txt -------------------------------------------------------------------------------- /pip-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/pip-requirements.txt -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/pylintrc -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | cmakelang/pypi/setup.py -------------------------------------------------------------------------------- /tangent/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | glob_subdirs() 2 | -------------------------------------------------------------------------------- /tangent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tangent/tooling/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/tangent/tooling/CMakeLists.txt -------------------------------------------------------------------------------- /tangent/tooling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tangent/tooling/broadway_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/tangent/tooling/broadway_run.py -------------------------------------------------------------------------------- /tangent/tooling/check_pbuilderrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/tangent/tooling/check_pbuilderrc.py -------------------------------------------------------------------------------- /tangent/tooling/clean_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/tangent/tooling/clean_stage.py -------------------------------------------------------------------------------- /tangent/tooling/cmake_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/tangent/tooling/cmake_post.py -------------------------------------------------------------------------------- /tangent/tooling/debhelp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/tangent/tooling/debhelp.py -------------------------------------------------------------------------------- /tangent/tooling/deploy_keys/cmake-format.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/tangent/tooling/deploy_keys/cmake-format.enc -------------------------------------------------------------------------------- /tangent/tooling/deploy_keys/cmakelang-docker.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/tangent/tooling/deploy_keys/cmakelang-docker.enc -------------------------------------------------------------------------------- /tangent/tooling/deploy_keys/cmakelang-precommit.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/tangent/tooling/deploy_keys/cmakelang-precommit.enc -------------------------------------------------------------------------------- /tangent/tooling/deploy_keys/cmakelang-pypi-tokens.json.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/tangent/tooling/deploy_keys/cmakelang-pypi-tokens.json.enc -------------------------------------------------------------------------------- /tangent/tooling/deploy_keys/cmakelang-rtd.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/tangent/tooling/deploy_keys/cmakelang-rtd.enc -------------------------------------------------------------------------------- /tangent/tooling/export_sparse_subrepo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/tangent/tooling/export_sparse_subrepo.py -------------------------------------------------------------------------------- /tangent/tooling/gen_rtd_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/tangent/tooling/gen_rtd_requirements.py -------------------------------------------------------------------------------- /tangent/tooling/gendoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/tangent/tooling/gendoc.py -------------------------------------------------------------------------------- /tangent/tooling/generate_style_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/tangent/tooling/generate_style_manifest.py -------------------------------------------------------------------------------- /tangent/tooling/get_release_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/tangent/tooling/get_release_notes.py -------------------------------------------------------------------------------- /tangent/tooling/get_version_from_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/tangent/tooling/get_version_from_header.py -------------------------------------------------------------------------------- /tangent/tooling/get_wheel_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/tangent/tooling/get_wheel_name.py -------------------------------------------------------------------------------- /tangent/tooling/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/tangent/tooling/github.py -------------------------------------------------------------------------------- /tangent/tooling/gtkdoc_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/tangent/tooling/gtkdoc_helper.py -------------------------------------------------------------------------------- /tangent/tooling/install_debug_symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/tangent/tooling/install_debug_symbols.py -------------------------------------------------------------------------------- /tangent/tooling/sync_sparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/tangent/tooling/sync_sparse.py -------------------------------------------------------------------------------- /tangent/tooling/vscode_varsub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/tangent/tooling/vscode_varsub.py -------------------------------------------------------------------------------- /tangent/tooling/write_pypirc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshirekow/cmake_format/HEAD/tangent/tooling/write_pypirc.py --------------------------------------------------------------------------------