File tree Expand file tree Collapse file tree 4 files changed +42
-20
lines changed Expand file tree Collapse file tree 4 files changed +42
-20
lines changed Original file line number Diff line number Diff line change 2
2
# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
3
3
4
4
# Ignore all test and documentation with "export-ignore".
5
- /.gitattributes export-ignore
6
- /.gitignore export-ignore
7
- /.travis.yml export-ignore
8
- /phpunit.xml.dist export-ignore
9
- /tests export-ignore
10
- /.editorconfig export-ignore
11
- /.php_cs export-ignore
12
- /.github export-ignore
13
- /psalm.xml export-ignore
5
+ .build / export-ignore
6
+ .chglog / export-ignore
7
+ .github / export-ignore
8
+ baselines / export-ignore
9
+ # config/ export-ignore
10
+ # src/ export-ignore
11
+ tests / export-ignore
12
+ vendor / export-ignore
13
+ vendor-bin / export-ignore
14
+ .editorconfig export-ignore
15
+ .gitattributes export-ignore
16
+ .gitignore export-ignore
17
+ .lintmdrc export-ignore
18
+ .php-cs-fixer.php export-ignore
19
+ _ide_helper.php export-ignore
20
+ CHANGELOG.md export-ignore
21
+ composer.json export-ignore
22
+ composer.lock export-ignore
23
+ composer-dependency-analyser.php export-ignore
24
+ composer-updater export-ignore
25
+ LICENSE export-ignore
26
+ monorepo-builder.php export-ignore
27
+ peck.json export-ignore
28
+ phpstan.neon export-ignore
29
+ phpunit.xml.dist export-ignore
30
+ README.md export-ignore
31
+ rector.php export-ignore
32
+ tests.php export-ignore
Original file line number Diff line number Diff line change
1
+ .build /
2
+ .history /
1
3
.idea /
2
- .php_cs
3
- .phplint-cache
4
- .php_cs.cache
4
+ vendor /
5
+
6
+ .DS_Store
5
7
.php-cs-fixer.cache
6
8
.phpunit.result.cache
7
- .build /
8
- composer.lock
9
- coverage /
10
9
clover.xml
10
+ composer.lock
11
11
phpunit.xml
12
12
psalm.xml
13
- vendor /
14
- /tests. *
15
- .DS_Store
16
- .history /
17
- composer.phar
13
+ tests. *
Original file line number Diff line number Diff line change 1
1
{
2
2
"excludeFiles": [
3
+ ".build/",
4
+ "baselines/",
5
+ "config/",
3
6
"src/",
4
7
"tests/",
5
8
"vendor/",
9
+ "vendor-bin/",
6
10
"./CHANGELOG.md"
7
11
],
8
12
"rules": {
Original file line number Diff line number Diff line change @@ -144,6 +144,9 @@ $status = (new SingleCommandApplication)
144
144
return $ this ;
145
145
}
146
146
147
+ /**
148
+ * @noinspection PhpEnforceDocCommentInspection
149
+ */
147
150
private function normalizeComposerJson (): self
148
151
{
149
152
$ this ->mustRunCommand ("$ this ->composerBinary normalize --diff --ansi " );
You can’t perform that action at this time.
0 commit comments