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
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ indent_style = tab
indent_size = tab
tab_width = 4

[{*.json,*.yml,*.md}]
[{*.json, *.yaml, *.yml, *.md}]
indent_style = space
indent_size = 2
10 changes: 5 additions & 5 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- ".docs/**"
push:
branches:
- "master"
- "*"
schedule:
- cron: "0 8 * * 1" # At 08:00 on Monday

Expand All @@ -24,8 +24,8 @@ jobs:

strategy:
matrix:
php-version: ["7.4"]
operating-system: ["ubuntu-latest"]
php-version: [ "7.4" ]
operating-system: [ "ubuntu-latest" ]
fail-fast: false

steps:
Expand Down Expand Up @@ -86,8 +86,8 @@ jobs:

strategy:
matrix:
php-version: ["7.4"]
operating-system: ["ubuntu-latest"]
php-version: [ "7.4" ]
operating-system: [ "ubuntu-latest" ]
fail-fast: false

steps:
Expand Down
10 changes: 8 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"name": "contributte/code-checker",
"description": "nette/code-checker optimized for co-operation with our coding standard",
"keywords": ["nette", "code checker", "coding standard"],
"keywords": [
"nette",
"code checker",
"coding standard"
],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/contributte/code-checker",
Expand All @@ -26,7 +30,9 @@
"Contributte\\CodeChecker\\": "src/"
}
},
"bin": ["bin/checker"],
"bin": [
"bin/checker"
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
Expand Down