Skip to content

Commit 1bbea6c

Browse files
Merge pull request #306 from TheDragonCode/6.x
Added exceptions for processing AI agent folders
2 parents 72f084a + 554a125 commit 1bbea6c

3 files changed

Lines changed: 20 additions & 14 deletions

File tree

biome.json

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,28 @@
99
"ignoreUnknown": false,
1010
"includes": [
1111
"**",
12-
"!node_modules",
13-
"!vendor",
14-
"!composer.json",
15-
"!composer.lock",
16-
"!package.json",
17-
"!package-lock.json",
1812
"!**/analytics.*",
1913
"!**/metrics.*",
14+
"!.agents",
15+
"!.ai",
16+
"!.ai-factory",
17+
"!.claude",
18+
"!.codex",
19+
"!.cursor",
20+
"!.gemini",
21+
"!.github",
22+
"!.junie",
23+
"!.mcp.json",
24+
"!build",
25+
"!composer.json",
26+
"!composer.lock",
2027
"!coverage",
2128
"!dist",
22-
"!build",
23-
"!public"
29+
"!node_modules",
30+
"!package-lock.json",
31+
"!package.json",
32+
"!public",
33+
"!vendor"
2434
]
2535
},
2636
"formatter": {

presets/rector/default.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@
2626
typeDeclarations: true,
2727
)
2828
->withPhpSets()
29-
->withImportNames(
30-
removeUnusedImports: true,
31-
)
29+
->withImportNames()
3230
->withComposerBased(
3331
phpunit: true
3432
)

presets/rector/laravel.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,7 @@
4343
)
4444
->withPhpSets()
4545
->withSetProviders(LaravelSetProvider::class)
46-
->withImportNames(
47-
removeUnusedImports: true,
48-
)
46+
->withImportNames()
4947
->withComposerBased(
5048
phpunit: true,
5149
laravel: true

0 commit comments

Comments
 (0)