Skip to content

Commit

Permalink
fix(conform): php-cs-fixer cache option
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephane Pluchart committed Dec 20, 2023
1 parent 8a191da commit e607c5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/plugins/conform.lua
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ return {
})

require('conform.formatters.php_cs_fixer').args = function(self, ctx)
local args = { 'fix', '$FILENAME', '--quiet', '--no-interaction' }
local args = { 'fix', '$FILENAME', '--quiet', '--no-interaction', '--using-cache=no' }
local found = vim.fs.find('.php-cs-fixer.php', { upward = true, path = ctx.dirname })[1]

if found then
Expand Down

0 comments on commit e607c5e

Please sign in to comment.