this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

tflint

+41 -1
+1
Brewfile
··· 45 45 brew "rustup-init" 46 46 brew "unar" 47 47 brew "tfenv" 48 + brew "tflint" 48 49 brew "terraform-ls" 49 50 brew "eksctl" 50 51 brew "kubectl"
+39
Brewfile.lock.json
··· 2028 2028 "cjbassi/ytop/ytop": { 2029 2029 "version": "0.6.2", 2030 2030 "bottle": false 2031 + }, 2032 + "tflint": { 2033 + "version": "0.35.0", 2034 + "bottle": { 2035 + "rebuild": 0, 2036 + "root_url": "https://ghcr.io/v2/homebrew/core", 2037 + "files": { 2038 + "arm64_monterey": { 2039 + "cellar": ":any_skip_relocation", 2040 + "url": "https://ghcr.io/v2/homebrew/core/tflint/blobs/sha256:6adbb9521a0edff3c7a0cc4eb8e6796aef138d91efda0dcf8993f06962558868", 2041 + "sha256": "6adbb9521a0edff3c7a0cc4eb8e6796aef138d91efda0dcf8993f06962558868" 2042 + }, 2043 + "arm64_big_sur": { 2044 + "cellar": ":any_skip_relocation", 2045 + "url": "https://ghcr.io/v2/homebrew/core/tflint/blobs/sha256:7712be10a5035dc5c9ec66406cfed66b4a34d4ecad8762db8409a36cc7266865", 2046 + "sha256": "7712be10a5035dc5c9ec66406cfed66b4a34d4ecad8762db8409a36cc7266865" 2047 + }, 2048 + "monterey": { 2049 + "cellar": ":any_skip_relocation", 2050 + "url": "https://ghcr.io/v2/homebrew/core/tflint/blobs/sha256:11fb9f7a18c876973dfa0108c38ab736ee4b5d189d5859c61f2a2152c4c04647", 2051 + "sha256": "11fb9f7a18c876973dfa0108c38ab736ee4b5d189d5859c61f2a2152c4c04647" 2052 + }, 2053 + "big_sur": { 2054 + "cellar": ":any_skip_relocation", 2055 + "url": "https://ghcr.io/v2/homebrew/core/tflint/blobs/sha256:39c9104f8dc3bd5c54289119b74c36b90ffcefcfb7ef0d619a9fe5d462a55a60", 2056 + "sha256": "39c9104f8dc3bd5c54289119b74c36b90ffcefcfb7ef0d619a9fe5d462a55a60" 2057 + }, 2058 + "catalina": { 2059 + "cellar": ":any_skip_relocation", 2060 + "url": "https://ghcr.io/v2/homebrew/core/tflint/blobs/sha256:7b6022ba10225581003ea9c9d07121a15812c2cd63072b71de6002cd47deef1f", 2061 + "sha256": "7b6022ba10225581003ea9c9d07121a15812c2cd63072b71de6002cd47deef1f" 2062 + }, 2063 + "x86_64_linux": { 2064 + "cellar": ":any_skip_relocation", 2065 + "url": "https://ghcr.io/v2/homebrew/core/tflint/blobs/sha256:132b774e4917a27039a8cdc599d6bef9ad8022dcf6429c3d5a2bdf22a9a6cae2", 2066 + "sha256": "132b774e4917a27039a8cdc599d6bef9ad8022dcf6429c3d5a2bdf22a9a6cae2" 2067 + } 2068 + } 2069 + } 2031 2070 } 2032 2071 }, 2033 2072 "cask": {
+1 -1
nvim/init.lua
··· 205 205 -- LSP 206 206 ------------------------------------------------- 207 207 local nvim_lsp = require('lspconfig') 208 - local servers = {'gopls', 'terraformls', 'solargraph', 'rls', 'tsserver', 'jsonls', 'hls'} 208 + local servers = {'gopls', 'terraformls', 'solargraph', 'rls', 'tsserver', 'jsonls', 'tflint'} 209 209 -- Needs `volta install vscode-langservers-extracted` for jsonls 210 210 for _, lsp in ipairs(servers) do 211 211 nvim_lsp[lsp].setup {