Merge pull request 'mitch' (#1) from mitch into develop
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Reviewed-on: https://gitea.mitchecp.com/gitea/test/pulls/1
This commit is contained in:
commit
b3c1531622
22
.editorconfig
Normal file
22
.editorconfig
Normal file
@ -0,0 +1,22 @@
|
||||
#https://editorconfig.org/
|
||||
#INI format
|
||||
|
||||
root = true
|
||||
|
||||
[*]
|
||||
charset = utf-8
|
||||
indent_style = tab
|
||||
indent_size = 4
|
||||
end_of_line = lf
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
[*.yml]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
[*.md]
|
||||
#EditorConfig for VS Code v0.16.4
|
||||
#Known Issues
|
||||
#trim_trailing_whitespace = false is not applied when user/workspace setting of files.trimTrailingWhitespace is set to true.
|
||||
trim_trailing_whitespace = false
|
||||
4
.gitignore
vendored
4
.gitignore
vendored
@ -0,0 +1,4 @@
|
||||
*.log
|
||||
.DS_Store
|
||||
.env
|
||||
.env.local
|
||||
12
.woodpecker.yml
Normal file
12
.woodpecker.yml
Normal file
@ -0,0 +1,12 @@
|
||||
steps:
|
||||
# 疎通テスト
|
||||
# hello:
|
||||
# image: alpine:latest
|
||||
# commands:
|
||||
# - echo "Woodpecker is working!"
|
||||
|
||||
# PHPのLintテスト
|
||||
php-lint:
|
||||
image: php:8.3-cli
|
||||
commands:
|
||||
- find . -name "*.php" -print0 | xargs -0 -n1 php -l
|
||||
Loading…
x
Reference in New Issue
Block a user