├── .editorconfig ├── .github └── workflows │ └── ci.yml ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml └── test ├── .protolint.yaml └── service.proto /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plexsystems/protolint-action/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plexsystems/protolint-action/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plexsystems/protolint-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plexsystems/protolint-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plexsystems/protolint-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plexsystems/protolint-action/HEAD/action.yml -------------------------------------------------------------------------------- /test/.protolint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plexsystems/protolint-action/HEAD/test/.protolint.yaml -------------------------------------------------------------------------------- /test/service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plexsystems/protolint-action/HEAD/test/service.proto --------------------------------------------------------------------------------