From cfacbf9fc1893f6127f949904665a43dcb41cd14 Mon Sep 17 00:00:00 2001 From: Ben Selby Date: Sat, 28 Feb 2026 10:39:06 +0000 Subject: [PATCH 1/3] Document the desire to have --config-file for php-cs-fixer settings --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1eb3064..3f6d747 100644 --- a/README.md +++ b/README.md @@ -111,6 +111,7 @@ You can also define the configuration for the following settings, be it for a pr - `php_cs_fixer_show_quick_panel` – Do you want the quick panel to display on execution? - `php_cs_fixer_executable_path` – The path to the php-cs-fixer application. - `php_cs_fixer_additional_args` – This is the extra information you want to pass to the php-cs-fixer command. For example which “fixers” you want to run + - You're likely to want to define `"--cache-file": "${project_path}/php-cs-fixer.cache"`, or equivalent for your project. ### PHP Code Beautifier @@ -150,7 +151,7 @@ Your .project file should look something like this: } ``` -Of course this is a example to apply Drupal code sniffer. This could be anything. Whatever you can have on this package settings it can be overwritten under the settings -> phpcs +Of course, this is an example of how to apply Drupal standards for the Code Sniffer. This could be anything. Whatever you can have on this package settings it can be overwritten under the settings -> phpcs. ### Multi-Platform Settings From c048927c36ceb79e8eaf61d930a6a31c18dab3bb Mon Sep 17 00:00:00 2001 From: Ben Selby Date: Sat, 28 Feb 2026 10:39:29 +0000 Subject: [PATCH 2/3] Define .gitignore file --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bee8a64 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +__pycache__ From 066ea21c895f7f4b3f6541c3d0716dc9e87b085e Mon Sep 17 00:00:00 2001 From: Ben Selby Date: Sat, 28 Feb 2026 10:39:39 +0000 Subject: [PATCH 3/3] Define markdownlint linter settings. --- .markdownlint.json | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .markdownlint.json diff --git a/.markdownlint.json b/.markdownlint.json new file mode 100644 index 0000000..b077f0e --- /dev/null +++ b/.markdownlint.json @@ -0,0 +1,4 @@ +{ + "default": true, + "MD013": false +}