├── .editorconfig ├── .github └── workflows │ ├── mypy.yml │ └── runtime.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── COPYING ├── LICENSE.BSD ├── LICENSE.PSF ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── command_line_usage.rst ├── conf.py ├── index.rst ├── make.bat ├── plugins.rst └── usage.rst ├── editorconfig ├── __init__.py ├── __main__.py ├── exceptions.py ├── fnmatch.py ├── handler.py ├── ini.py ├── py.typed ├── version.py └── versiontools.py ├── pyproject.toml ├── renovate.json └── setup.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/mypy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/.github/workflows/mypy.yml -------------------------------------------------------------------------------- /.github/workflows/runtime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/.github/workflows/runtime.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/LICENSE.BSD -------------------------------------------------------------------------------- /LICENSE.PSF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/LICENSE.PSF -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/command_line_usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/docs/command_line_usage.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/docs/plugins.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /editorconfig/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/editorconfig/__init__.py -------------------------------------------------------------------------------- /editorconfig/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/editorconfig/__main__.py -------------------------------------------------------------------------------- /editorconfig/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/editorconfig/exceptions.py -------------------------------------------------------------------------------- /editorconfig/fnmatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/editorconfig/fnmatch.py -------------------------------------------------------------------------------- /editorconfig/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/editorconfig/handler.py -------------------------------------------------------------------------------- /editorconfig/ini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/editorconfig/ini.py -------------------------------------------------------------------------------- /editorconfig/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /editorconfig/version.py: -------------------------------------------------------------------------------- 1 | VERSION = (0, 17, 1, "final") 2 | -------------------------------------------------------------------------------- /editorconfig/versiontools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/editorconfig/versiontools.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/pyproject.toml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/renovate.json -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig/editorconfig-core-py/HEAD/setup.py --------------------------------------------------------------------------------