-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.intelephense
30 lines (30 loc) · 1.35 KB
/
.intelephense
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"intelephense.environment.phpVersion": "7.4",
"intelephense.environment.composerJsonPath": "laravel/composer.json",
"intelephense.environment.includePaths": ["src"],
"intelephense.diagnostics.undefinedTypes": true,
"intelephense.diagnostics.undefinedMethods": true,
"intelephense.diagnostics.undefinedFunctions": true,
"intelephense.diagnostics.undefinedConstants": true,
"intelephense.diagnostics.undefinedVariables": true,
"intelephense.diagnostics.unusedVariables": true,
"intelephense.diagnostics.unusedParameters": true,
"intelephense.diagnostics.unusedImports": true,
"intelephense.diagnostics.redundantMethods": true,
"intelephense.diagnostics.redundantVariables": true,
"intelephense.diagnostics.redundantProperties": true,
"intelephense.diagnostics.redundantAssignments": true,
"intelephense.diagnostics.redundantConditionals": true,
"intelephense.diagnostics.redundantReturns": true,
"intelephense.files.maxSize": 5000000,
"intelephense.index.exclude": [
"**/node_modules/**",
"**/vendor/**",
"**/tests/**"
],
"intelephense.format.enable": true,
"intelephense.format.insertSpaceBeforeFunctionParenthesis": true,
"intelephense.format.insertSpaceAfterCommaDelimiter": true,
"intelephense.format.insertSpaceAfterSemicolonInForStatements": true,
"intelephense.format.insertSpaceBeforeAndAfterBinaryOperators": true
}