From 2fcc21dd42c7c20ca6112f0edfafc56922948217 Mon Sep 17 00:00:00 2001 From: "David T. Sadler" Date: Fri, 6 Mar 2026 22:51:10 +0000 Subject: Add PHP script to generate the markdown table of Neovim keymaps --- .php-cs-fixer.dist.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .php-cs-fixer.dist.php (limited to '.php-cs-fixer.dist.php') diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php new file mode 100644 index 0000000..6e89bee --- /dev/null +++ b/.php-cs-fixer.dist.php @@ -0,0 +1,18 @@ +in(__DIR__); + +return (new PhpCsFixer\Config()) + ->setRules([ + '@PSR12' => true, +# 'strict_param' => true, + 'array_syntax' => ['syntax' => 'short'], +# 'declare_strict_types' => true, + ]) + ->setFinder($finder); -- cgit v1.2.3-13-gbd6f