Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: lint issues
  • Loading branch information
s1n7ax committed Dec 10, 2023
commit 3b8fa41cd78599d7ff4a7469f1a11f0ad396f1c7
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: panvimdoc
uses: kdheepak/panvimdoc@main
with:
vimdoc: "nvim-java-core"
vimdoc: "nvim-java"
dedupsubheadings: false
version: "Neovim >= 0.9.4"
demojify: true
Expand Down
12 changes: 0 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,8 @@ jobs:
release:
name: release
if: ${{ github.ref == 'refs/heads/main' }}
# needs:
# - style
# - lint
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
with:
release-type: simple
package-name: nvim-testing
# - uses: actions/checkout@v3
# - uses: rickstaa/action-create-tag@v1
# if: ${{ steps.release.outputs.release_created }}
# with:
# tag: stable
# message: "Current stable release: ${{ steps.release.outputs.tag_name }}"
# tag_exists_error: false
# force_push_tag: true
1 change: 1 addition & 0 deletions .luacheckrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ globals = {
'vim.o',
'vim.g',
'vim.wo',
'vim.bo',
'vim.opt',
}
read_globals = {
Expand Down
1 change: 0 additions & 1 deletion lua/java/dap/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ local DapSetup = require('java-dap.api.setup')
local DapRunner = require('java-dap.api.runner')

local JavaCoreTestApi = require('java-core.api.test')
local JavaCoreTestClient = require('java-core.ls.clients.java-test-client')

---@class JavaDap
---@field private client LspClient
Expand Down
2 changes: 2 additions & 0 deletions lua/java/utils/log.lua
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,8 @@ log.new = function(config, standalone)
end)
end
end

return obj
end

log.new(default_config, true)
Expand Down