Skip to content

Commit d5eb85a

Browse files
committed
chore(github): Remove deprecated GitHub configuration files
- Remove .github/config.yml and .github/stale.yml as they are no longer used by this repository - The deleted files contained automation configurations for todo, new-issue-welcome, first-pr-merge, request-info, update-docs, and stale-bot features - This cleanup reduces confusion and maintenance for GitHub automation - No code changes; this only affects repository configuration - Consider reintroducing automation via updated GitHub Actions workflows if needed in the future Signed-off-by: guanguans <ityaozm@gmail.com>
1 parent 5b85e44 commit d5eb85a

13 files changed

Lines changed: 19 additions & 101 deletions

File tree

.editorconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ max_line_length = 0
2020
[*.bat]
2121
end_of_line = crlf
2222

23-
[*.go]
24-
indent_style = tab
23+
# [*.go]
24+
# indent_style = tab
2525

2626
[*.md]
2727
trim_trailing_whitespace = false

.github/config.yml

Lines changed: 0 additions & 78 deletions
This file was deleted.

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Please see the documentation for all configuration options:
2-
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
2+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates
33

44
version: 2
55
updates:

.github/stale.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

_ide_helper.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?php
22

3-
/** @noinspection PhpMultipleClassDeclarationsInspection */
4-
53
declare(strict_types=1);
64

75
/**

src/Mixins/QueryBuilderMixin.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
/** @noinspection DebugFunctionUsageInspection */
44
/** @noinspection ForgottenDebugOutputInspection */
5+
/** @noinspection PhpMethodParametersCountMismatchInspection */
56
/** @noinspection PhpUnused */
67

78
declare(strict_types=1);

testbench.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ workbench:
2929
commands: true
3030
components: false
3131
factories: true
32-
views: false
32+
views: true
3333
build:
3434
- asset-publish
3535
- create-sqlite-db

workbench/app/Models/User.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<?php
22

3+
/** @noinspection ClassOverridesFieldOfSuperClassInspection */
4+
/** @noinspection LaravelUnknownEloquentFactoryInspection */
5+
36
declare(strict_types=1);
47

58
/**

workbench/app/Providers/WorkbenchServiceProvider.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ class WorkbenchServiceProvider extends ServiceProvider
2121
{
2222
/**
2323
* Register services.
24+
*
25+
* @noinspection PhpMissingParentCallCommonInspection
2426
*/
2527
public function register(): void
2628
{

workbench/database/migrations/0001_01_01_000000_create_users_table.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
/** @noinspection PhpUnusedAliasInspection */
4+
35
declare(strict_types=1);
46

57
/**

0 commit comments

Comments
 (0)