├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── LICENSE ├── Makefile ├── README.md ├── doc ├── jenkinsfile-linter.txt └── tags ├── lua └── jenkinsfile_linter.lua ├── neovim.toml ├── selene.toml └── stylua.toml /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckipp01/nvim-jenkinsfile-linter/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckipp01/nvim-jenkinsfile-linter/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckipp01/nvim-jenkinsfile-linter/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckipp01/nvim-jenkinsfile-linter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckipp01/nvim-jenkinsfile-linter/HEAD/README.md -------------------------------------------------------------------------------- /doc/jenkinsfile-linter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckipp01/nvim-jenkinsfile-linter/HEAD/doc/jenkinsfile-linter.txt -------------------------------------------------------------------------------- /doc/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckipp01/nvim-jenkinsfile-linter/HEAD/doc/tags -------------------------------------------------------------------------------- /lua/jenkinsfile_linter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckipp01/nvim-jenkinsfile-linter/HEAD/lua/jenkinsfile_linter.lua -------------------------------------------------------------------------------- /neovim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckipp01/nvim-jenkinsfile-linter/HEAD/neovim.toml -------------------------------------------------------------------------------- /selene.toml: -------------------------------------------------------------------------------- 1 | std = "neovim" 2 | -------------------------------------------------------------------------------- /stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckipp01/nvim-jenkinsfile-linter/HEAD/stylua.toml --------------------------------------------------------------------------------