Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 1 addition & 24 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,28 +173,6 @@ Mentioned values are default ones.

<br>

Do you use ECS across variety of project? Do you want to run them always the same way in each of those project? Let's make use of [Composer scripts](https://blog.martinhujer.cz/have-you-tried-composer-scripts/)

This command adds 2 handy scripts to your `composer.json`:

```bash
vendor/bin/ecs scripts
```

Run them always the same way - to check the code:

```bash
composer check-cs
```

To apply fixes, run:

```bash
composer fix-cs
```

<br>

### Controlling Output Format

You may want to use ECS to generate reports for third-party tooling.
Expand Down Expand Up @@ -259,8 +237,7 @@ settings for:
These settings will take precedence over similar rules configured through sets
like PSR12, to avoid conflicting with other tooling using your `.editorconfig`.

Unfortunately, not all settings are currently respected, but PRs are always
welcome!
<br>

## How to Migrate from another coding standard tool?

Expand Down
59 changes: 0 additions & 59 deletions src/Console/Command/ScriptsCommand.php

This file was deleted.

3 changes: 0 additions & 3 deletions src/Console/EasyCodingStandardConsoleApplication.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
use Symplify\EasyCodingStandard\Application\Version\StaticVersionResolver;
use Symplify\EasyCodingStandard\Console\Command\CheckCommand;
use Symplify\EasyCodingStandard\Console\Command\ListCheckersCommand;
use Symplify\EasyCodingStandard\Console\Command\ScriptsCommand;
use Symplify\EasyCodingStandard\Console\Command\WorkerCommand;
use Symplify\EasyCodingStandard\Console\Output\ConsoleOutputFormatter;
use Symplify\EasyCodingStandard\ValueObject\Option;
Expand All @@ -26,7 +25,6 @@ final class EasyCodingStandardConsoleApplication extends Application
public function __construct(
CheckCommand $checkCommand,
WorkerCommand $workerCommand,
ScriptsCommand $scriptsCommand,
ListCheckersCommand $listCheckersCommand
) {
parent::__construct('EasyCodingStandard', StaticVersionResolver::PACKAGE_VERSION);
Expand All @@ -36,7 +34,6 @@ public function __construct(

$this->add($checkCommand);
$this->add($workerCommand);
$this->add($scriptsCommand);
$this->add($listCheckersCommand);

$this->get('completion')
Expand Down
29 changes: 0 additions & 29 deletions src/FileSystem/JsonFileSystem.php

This file was deleted.

Loading