Download the PHP package bisual/eslint-config-php without Composer
On this page you can find all versions of the php package bisual/eslint-config-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download bisual/eslint-config-php
More information about bisual/eslint-config-php
Files in bisual/eslint-config-php
Package eslint-config-php
Short Description Bisual eslint config for PHP projects
License MIT
Homepage https://github.com/bisual/eslint-config-php
Informations about the package eslint-config-php
Bisual eslint PHP
Installation
1.Install dependency
Run the following command in the terminal to install the necessary dependencies:
2.Linter Configuration
Create a file named .php-cs-fixer.php
in the root of the project and add the following content:
In the CodingStyle::getConfig()
function, you can provide parameters to configure the formatter. It is passed as a parameter an array with the following options:
- $disabled_rules (array): Rules to be disabled.
- $routes (array): Routes of the files to be formatted.
- $exclude_files (array): Files to be excluded from formatting.
3.Install a Formatter Extension
Install the junstyle.php-cs-fixer extension in Visual Studio Code.
[!TIP] To facilitate the installation of the formatter extension in Visual Studio Code for new contributors, you can create an
extensions.json
file in the.vscode
folder with the following content:
4.Automatic Formatting Configuration
To enable automatic code formatting on save, follow these steps:
- Create a folder named .vscode in the root of the project.
- Inside the .vscode folder, create a file named settings.json.
- Add the following content to the settings.json file:
After making these changes, you may need to restart Visual Studio Code for them to take effect.