From 813f71871c572fb81f227623c274c8b696333cf4 Mon Sep 17 00:00:00 2001 From: "lei.tian" Date: Wed, 15 Mar 2023 15:25:02 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E9=A1=B9=E7=9B=AE=E5=9F=BA?= =?UTF-8?q?=E7=A1=80=E9=85=8D=E7=BD=AE=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .editorconfig | 14 +++++++++----- .gitattributes | 8 +++++--- .php-cs-fixer.php | 2 +- phpstan-baseline.neon | 0 phpstan.neon | 28 ++++++++++++++++------------ phpunit.xml.dist | 26 ++++++++++++++------------ 6 files changed, 45 insertions(+), 33 deletions(-) create mode 100644 phpstan-baseline.neon diff --git a/.editorconfig b/.editorconfig index 7aebc83..64ed669 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,11 +1,15 @@ -# EditorConfig is awesome: http://EditorConfig.org root = true [*] -end_of_line = lf -insert_final_newline = true - -[**.{php,md}] charset = utf-8 +end_of_line = lf indent_style = space indent_size = 4 +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +max_line_length = 80 + +[*.{json,yml}] +indent_size = 2 diff --git a/.gitattributes b/.gitattributes index de4f67d..feb9596 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,9 +1,11 @@ +/.github export-ignore +/.gitlab export-ignore /.gitattributes export-ignore /.gitignore export-ignore -/.github export-ignore -/.php-cs-fixer.php export-ignore /.editorconfig export-ignore +/.php-cs-fixer.php export-ignore +/phpstan.neon export-ignore +/phpstan-baseline.neon export-ignore /phpunit.xml export-ignore /phpunit.xml.dist export-ignore -/phpstan.neon export-ignore /tests export-ignore diff --git a/.php-cs-fixer.php b/.php-cs-fixer.php index b62b596..e5fa3e8 100644 --- a/.php-cs-fixer.php +++ b/.php-cs-fixer.php @@ -21,9 +21,9 @@ return (new PhpCsFixer\Config()) ->setUsingCache(true) ->setRiskyAllowed(true) ->setRules([ + '@PSR12' => true, '@PHP71Migration' => true, '@PHPUnit75Migration:risky' => true, - '@PSR12' => true, 'header_comment' => ['header' => $fileHeaderComment], ]) ->setFinder( diff --git a/phpstan-baseline.neon b/phpstan-baseline.neon new file mode 100644 index 0000000..e69de29 diff --git a/phpstan.neon b/phpstan.neon index bfd0251..56214f5 100644 --- a/phpstan.neon +++ b/phpstan.neon @@ -1,13 +1,17 @@ +includes: + - phpstan-baseline.neon + parameters: - level: 5 - checkMissingIterableValueType: false - checkFunctionNameCase: true - reportUnmatchedIgnoredErrors: false - checkGenericClassInNonGenericObjectType: false - inferPrivatePropertyTypeFromConstructor: true - treatPhpDocTypesAsCertain: false - paths: - - src - - tests - ignoreErrors: - - '#PHPDoc tag .* has invalid value.*#' + level: 5 + checkMissingIterableValueType: false + checkFunctionNameCase: true + reportUnmatchedIgnoredErrors: false + checkGenericClassInNonGenericObjectType: false + inferPrivatePropertyTypeFromConstructor: true + treatPhpDocTypesAsCertain: false + paths: + - src + - tests + ignoreErrors: + - '#PHPDoc tag .* has invalid value.*#' + - '#Unsafe usage of new static\(\).#' diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 16a418d..faa4886 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,24 +1,26 @@ - ./tests/ + tests - - - src/ - - + + + src + + + src/data + + + + +