-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpinsights.php
More file actions
299 lines (245 loc) · 7.66 KB
/
Copy pathphpinsights.php
File metadata and controls
299 lines (245 loc) · 7.66 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
<?php
/**
* PhpInsights configuration file
*
* @package sureforms-pro
*/
declare(strict_types=1);
return [
/*
|--------------------------------------------------------------------------
| Default Preset
|--------------------------------------------------------------------------
|
| This option controls the default preset that will be used by PHP Insights
| to make your code reliable, simple, and clean. However, you can always
| adjust the `Metrics` and `Insights` below in this configuration file.
|
| Supported: "default", "laravel", "symfony", "magento2", "drupal", "wordpress"
|
*/
'preset' => 'wordpress',
/*
|--------------------------------------------------------------------------
| IDE
|--------------------------------------------------------------------------
|
| This options allow to add hyperlinks in your terminal to quickly open
| files in your favorite IDE while browsing your PhpInsights report.
|
| Supported: "textmate", "macvim", "emacs", "sublime", "phpstorm",
| "atom", "vscode".
|
| If you have another IDE that is not in this list but which provide an
| url-handler, you could fill this config with a pattern like this:
|
| myide://open?url=file://%f&line=%l
|
*/
'ide' => 'vscode',
/*
|--------------------------------------------------------------------------
| Configuration
|--------------------------------------------------------------------------
|
| Here you may adjust all the various `Insights` that will be used by PHP
| Insights. You can either add, remove or configure `Insights`. Keep in
| mind, that all added `Insights` must belong to a specific `Metric`.
|
*/
'exclude' => [
'assets',
'modules',
'tests/*',
'inc/lib',
'phpinsights.php',
],
'add' => [],
'remove' => [
/**
* Globals accesses detected
* ToDo: Remove this rule after fixing the issue
*/
NunoMaduro\PhpInsights\Domain\Insights\ForbiddenGlobals::class,
/**
* Global keyword
* ToDo: Remove this rule after fixing the issue
*/
PHP_CodeSniffer\Standards\Squiz\Sniffs\PHP\GlobalKeywordSniff::class,
/**
* Defining global helpers is prohibited
* ToDo: Remove this rule after fixing the issue
*/
NunoMaduro\PhpInsights\Domain\Insights\ForbiddenDefineFunctions::class,
/**
* Forbidden functions (error_log, print_r for logging)
*/
PHP_CodeSniffer\Standards\Generic\Sniffs\PHP\ForbiddenFunctionsSniff::class,
/**
* Return, Property, Parameter type hint
*/
SlevomatCodingStandard\Sniffs\TypeHints\ReturnTypeHintSniff::class,
SlevomatCodingStandard\Sniffs\TypeHints\PropertyTypeHintSniff::class,
SlevomatCodingStandard\Sniffs\TypeHints\ParameterTypeHintSniff::class,
/**
* Disallow mixed type hint
*/
SlevomatCodingStandard\Sniffs\TypeHints\DisallowMixedTypeHintSniff::class,
/**
* Disallow empty
*/
SlevomatCodingStandard\Sniffs\ControlStructures\DisallowEmptySniff::class,
/**
* Forbidden public property
*/
SlevomatCodingStandard\Sniffs\Classes\ForbiddenPublicPropertySniff::class,
/**
* Having `classes` with more than 5 cyclomatic complexity is prohibited - Consider refactoring.
*/
NunoMaduro\PhpInsights\Domain\Insights\CyclomaticComplexityIsHigh::class,
/**
* Function length
*/
SlevomatCodingStandard\Sniffs\Functions\FunctionLengthSniff::class,
/**
* Valid class name, not in PascalCase format.
*/
PHP_CodeSniffer\Standards\Squiz\Sniffs\Classes\ValidClassNameSniff::class,
/**
* No spaces around offset.
*/
PhpCsFixer\Fixer\Whitespace\NoSpacesAroundOffsetFixer::class,
/**
* Side effects.
*/
PHP_CodeSniffer\Standards\PSR1\Sniffs\Files\SideEffectsSniff::class,
/**
* Arbitrary parentheses spacing
*/
PHP_CodeSniffer\Standards\Generic\Sniffs\WhiteSpace\ArbitraryParenthesesSpacingSniff::class,
/**
* Character before p h p opening tag
*/
PHP_CodeSniffer\Standards\Generic\Sniffs\PHP\CharacterBeforePHPOpeningTagSniff::class,
/**
* Disallow tab indent
*/
PHP_CodeSniffer\Standards\Generic\Sniffs\WhiteSpace\DisallowTabIndentSniff::class,
/**
* Line length
*/
PHP_CodeSniffer\Standards\Generic\Sniffs\Files\LineLengthSniff::class,
/**
* Binary operator spaces.
*/
PhpCsFixer\Fixer\Operator\BinaryOperatorSpacesFixer::class,
/**
* No spaces inside parenthesis
*/
PhpCsFixer\Fixer\Whitespace\NoSpacesInsideParenthesisFixer::class,
/**
* No spaces after function name
*/
PhpCsFixer\Fixer\FunctionNotation\FunctionDeclarationFixer::class,
/**
* Class definition
*/
PhpCsFixer\Fixer\ClassNotation\ClassDefinitionFixer::class,
/**
* Method argument space
*/
PhpCsFixer\Fixer\FunctionNotation\MethodArgumentSpaceFixer::class,
/**
* Braces fixer
*/
PhpCsFixer\Fixer\Basic\BracesFixer::class,
/**
* Declare strict types.
*/
SlevomatCodingStandard\Sniffs\TypeHints\DeclareStrictTypesSniff::class,
/**
* DOC comment spacing
*/
SlevomatCodingStandard\Sniffs\Commenting\DocCommentSpacingSniff::class,
/**
* Camel caps method name
*/
PHP_CodeSniffer\Standards\PSR1\Sniffs\Methods\CamelCapsMethodNameSniff::class,
/**
* Normal classes are forbidden. Classes must be final or abstract
* Todo: Remove this rule after fixing the issue
*/
NunoMaduro\PhpInsights\Domain\Insights\ForbiddenNormalClasses::class,
/**
* Void return
*/
PhpCsFixer\Fixer\FunctionNotation\VoidReturnFixer::class,
/**
* Disallow Yoda comparison
* Conflicts with wordpress coding standards
*/
\SlevomatCodingStandard\Sniffs\ControlStructures\DisallowYodaComparisonSniff::class,
/**
* This rule conflicts with wpcs comment rules
*/
PhpCsFixer\Fixer\Comment\NoTrailingWhitespaceInCommentFixer::class,
/**
* Since we define global constant
*/
NunoMaduro\PhpInsights\Domain\Insights\ForbiddenDefineGlobalConstants::class,
/**
* As we use traits.
*/
NunoMaduro\PhpInsights\Domain\Insights\ForbiddenTraits::class,
/**
* WordPress convention uses Abstract_ prefix for abstract classes.
*/
SlevomatCodingStandard\Sniffs\Classes\SuperfluousAbstractClassNamingSniff::class,
],
'config' => [
\SlevomatCodingStandard\Sniffs\Functions\UnusedParameterSniff::class => [
'exclude' => [
'inc/blocks/base.php',
],
],
],
/*
|--------------------------------------------------------------------------
| Requirements
|--------------------------------------------------------------------------
|
| Here you may define a level you want to reach per `Insights` category.
| When a score is lower than the minimum level defined, then an error
| code will be returned. This is optional and individually defined.
|
*/
'requirements' => [
'min-quality' => 95,
'min-complexity' => 0,
'min-architecture' => 84,
'min-style' => 98,
'disable-security-check' => false,
],
/*
|--------------------------------------------------------------------------
| Threads
|--------------------------------------------------------------------------
|
| Here you may adjust how many threads (core) PHPInsights can use to perform
| the analysis. This is optional, don't provide it and the tool will guess
| the max core number available. It accepts null value or integer > 0.
|
*/
'threads' => null,
/*
|--------------------------------------------------------------------------
| Timeout
|--------------------------------------------------------------------------
| Here you may adjust the timeout (in seconds) for PHPInsights to run before
| a ProcessTimedOutException is thrown.
| This accepts an int > 0. Default is 60 seconds, which is the default value
| of Symfony's setTimeout function.
|
*/
'timeout' => 60,
];