Skip to content

Commit

Permalink
refactor(conform): use php_cs_fixer cache
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephane Pluchart committed Dec 15, 2023
1 parent 48b3014 commit af27147
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 @@ -27,7 +27,7 @@ return {
},
config = function(_, opts)
require('conform.formatters.php_cs_fixer').args = function(_, ctx)
local args = { 'fix', '$FILENAME', '--quiet', '--no-interaction', '--using-cache=no' }
local args = { 'fix', '$FILENAME', '--quiet', '--no-interaction' }
local found = vim.fs.find('.php-cs-fixer.php', { upward = true, path = ctx.dirname })[1]

if found then
Expand Down

0 comments on commit af27147

Please sign in to comment.