This repository was archived by the owner on Mar 1, 2023. It is now read-only.
File tree 5 files changed +66
-8
lines changed
5 files changed +66
-8
lines changed Original file line number Diff line number Diff line change @@ -9,4 +9,7 @@ indent_size = 4
9
9
trim_trailing_whitespace = true
10
10
11
11
[* .yml ]
12
+ indent_size = 4
13
+
14
+ [package.json ]
12
15
indent_size = 2
Original file line number Diff line number Diff line change 6
6
.docker export-ignore
7
7
.github / export-ignore
8
8
9
- bin export-ignore
10
-
11
9
tests / export-ignore
12
10
13
11
.changelog export-ignore
@@ -17,7 +15,7 @@ tests/ export-ignore
17
15
.nvmrc export-ignore
18
16
.php_cs export-ignore
19
17
.textlintrc export-ignore
20
- .travis .yml export-ignore
18
+ .typo-ci .yml export-ignore
21
19
docker-compose.yml export-ignore
22
20
infection.json export-ignore
23
21
package.json export-ignore
Original file line number Diff line number Diff line change @@ -35,12 +35,12 @@ jobs:
35
35
env :
36
36
GIT_USER_EMAIL : " ${{ secrets.GIT_USER_EMAIL }}"
37
37
GIT_USER_USERNAME : " ${{ secrets.GIT_USER_USERNAME }}"
38
- run : |
39
- EMAIL=${GIT_USER_EMAIL:-"github-actions[bot]@users.noreply.github.com"}
40
- NAME=${GIT_USER_USERNAME:-"github-actions-shell"}
38
+ run : |
39
+ EMAIL=${GIT_USER_EMAIL:-"github-actions[bot]@users.noreply.github.com"}
40
+ NAME=${GIT_USER_USERNAME:-"github-actions-shell"}
41
41
42
- git config --global user.email "${EMAIL}"
43
- git config --global user.name "${NAME}"
42
+ git config --global user.email "${EMAIL}"
43
+ git config --global user.name "${NAME}"
44
44
45
45
- name : " Get yarn cache directory path"
46
46
id : " yarn-cache-dir-path"
Original file line number Diff line number Diff line change 5
5
composer.phar
6
6
/composer.lock
7
7
8
+ rector-temp-phpstan.neon
9
+
8
10
.php_cs.cache
9
11
.phpunit.result.cache
10
12
.phpunit.xdebug-filter.php
11
13
12
14
infection.log
13
15
16
+ /.build /composer.lock
14
17
/.build /infection /
15
18
! /.build /infection /.gitkeep
16
19
/.build /php-cs-fixer /
Original file line number Diff line number Diff line change
1
+ # This is a sample .typo-ci.yml file, it's used to configure how Typo CI will behave.
2
+ # Add it to the root of your project and push it to github.
3
+
4
+ # What language dictionaries should it use? Currently Typo CI supports:
5
+ # de
6
+ # en
7
+ # en_GB
8
+ # es
9
+ # fr
10
+ # it
11
+ # pt
12
+ # pt_BR
13
+ dictionaries :
14
+ - " en"
15
+ - " en_GB"
16
+
17
+ # Any files/folders we should ignore?
18
+ excluded_files :
19
+ - " vendor/**/*"
20
+ - " .build/**/*"
21
+ - " .dependabot/**/*"
22
+ - " .docker/**/*"
23
+ - " .github/workflows/**/*"
24
+ - " .github/settings.yml"
25
+ - " .changelog"
26
+ - " .editorconfig"
27
+ - " .gitattributes"
28
+ - " .gitignore"
29
+ - " .nvmrc"
30
+ - " .php_cs"
31
+ - " .textlintrc"
32
+ - " docker-compose.yml"
33
+ - " infection.json"
34
+ - " package.json"
35
+ - " package-lock.json"
36
+ - " phpstan.neon"
37
+ - " phpunit.xml"
38
+ - " psalm.xml"
39
+ - " psalm-baseline.xml"
40
+ - " src/**/*.php"
41
+ - " tests/**/*.php"
42
+ - " release.config.js"
43
+
44
+ # Any typos we should ignore?
45
+ excluded_words :
46
+ - " typoci"
47
+ - " anolilab"
48
+ - " bannert"
49
+ - " prisis"
50
+ - " narrowspark"
51
+ - " composer"
52
+
53
+ # Would you like filenames to also be spellchecked?
54
+ spellcheck_filenames : true
You can’t perform that action at this time.
0 commit comments