RyosukeSakakibara718 / project-balancer

A project management tool that allows managers to track member work hours and calculate/forecast gross profit based on the tracked data. This app helps in efficient resource allocation and profitability analysis.
0 stars 0 forks source link

PHP pint 設定 #4

Closed RyosukeSakakibara718 closed 1 month ago

RyosukeSakakibara718 commented 1 month ago

{ "preset": "laravel", // Laravelのプリセットを使用 "cache-file": ".pint.cache", // キャッシュファイルの名前を指定 "exclude": [ "database/migrations" // マイグレーションファイルを除外 ], "rules": { "concat_space": false, // 文字列の連結時にスペースを強制しない "date_time_immutable": true, // 日付と時刻に不変性を強制する "declare_strict_types": true, // 厳密な型宣言を強制する ⛑️要相談⛑️ "global_namespace_import": { // グローバル名前空間からのインポートを設定 "import_classes": true, // クラスのインポートを許可 "import_constants": true, // 定数のインポートを許可 "import_functions": true // 関数のインポートを許可 }, "new_with_braces": true, // new演算子で中括弧()を使用する "phpdoc_align": { "align": "left" // PHPDocのアラインメントを左揃えにする }, "simplified_if_return": true, // 単純なif文の返り値の簡略化を許可する "simplified_null_return": true // nullの返り値の簡略化を許可する } }

RyosukeSakakibara718 commented 1 month ago

PR:https://github.com/RyosukeSakakibara718/project-balancer/pull/5

RyosukeSakakibara718 commented 1 month ago

マージ済み