lintkit / editorconfig-config
Installs: 1 469
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- armin/editorconfig-cli: ^1.0 || ^2.0
README
Opinionated configuration for editor config
Usage
Install the dependency:
composer require --dev lintkit/editorconfig-config
Add the scripts:
"scripts": { "editorconfig:dry-run": "ec --finder-config vendor/lintkit/editorconfig-config/ec-cli-config.php", "editorconfig:fix": "@editorconfig:dry-run --fix", },
Custom Overriding
It may be you wish to add and/or remove stuff from the default finder config, in which case, make a ec-cli-config.php
in your project root with something like the following:
<?php $finder = include 'vendor/lintkit/editorconfig-config/ec-cli-config.php'; $finder ->notPath('html/_assets') ; return $finder;
Update your composer.json
to use --finder-config ./ec-cli-config.php