radarrplexorganizrnginxsonarrdashboardhtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpagestartpagelanding
		
		
		
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							57 lines
						
					
					
						
							1.6 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							57 lines
						
					
					
						
							1.6 KiB
						
					
					
				| <?php | |
| 
 | |
| use PhpCsFixer\Config; | |
| use PhpCsFixer\Finder; | |
| 
 | |
| $rules = [ | |
|     '@PSR2' => true, | |
|     'array_syntax' => [ | |
|         'syntax' => 'long', | |
|     ], | |
|     'binary_operator_spaces' => [ | |
|         'align_double_arrow' => false, | |
|         'align_equals' => false, | |
|     ], | |
|     'blank_line_before_return' => true, | |
|     'cast_spaces' => true, | |
|     'concat_space' => [ | |
|         'spacing' => 'none', | |
|     ], | |
|     'ereg_to_preg' => true, | |
|     'method_separation' => true, | |
|     'no_blank_lines_after_phpdoc' => true, | |
|     'no_extra_consecutive_blank_lines' => true, | |
|     'no_short_bool_cast' => true, | |
|     'no_unneeded_control_parentheses' => true, | |
|     'no_unused_imports' => true, | |
|     'no_whitespace_in_blank_line' => true, | |
|     'ordered_imports' => true, | |
|     'phpdoc_align' => true, | |
|     'phpdoc_indent' => true, | |
|     'phpdoc_inline_tag' => true, | |
|     'phpdoc_no_access' => true, | |
|     'phpdoc_no_alias_tag' => [ | |
|         'type' => 'var', | |
|     ], | |
|     'phpdoc_no_package' => true, | |
|     'phpdoc_order' => true, | |
|     'phpdoc_scalar' => true, | |
|     'phpdoc_separation' => true, | |
|     'phpdoc_to_comment' => true, | |
|     'phpdoc_trim' => true, | |
|     'phpdoc_types' => true, | |
|     'phpdoc_var_without_name' => true, | |
|     'self_accessor' => true, | |
|     'single_quote' => true, | |
|     'space_after_semicolon' => true, | |
|     'standardize_not_equals' => true, | |
|     'ternary_operator_spaces' => true, | |
|     'trailing_comma_in_multiline_array' => true, | |
|     'trim_array_spaces' => true, | |
|     'unary_operator_spaces' => true, | |
| ]; | |
| 
 | |
| return Config::create()->setRules($rules) | |
|              ->setFinder(Finder::create()->in(__DIR__)) | |
|              ->setUsingCache(true) | |
|              ->setRiskyAllowed(true); |