-
Notifications
You must be signed in to change notification settings - Fork 4
/
.styleci.yml
35 lines (33 loc) · 865 Bytes
/
.styleci.yml
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
preset: psr2
enabled:
- concat_with_spaces
- function_typehint_space
- hash_to_slash_comment
- lowercase_cast
- native_function_casing
- no_alias_functions
- no_blank_lines_after_phpdoc
- no_blank_lines_between_imports
- no_empty_statement
- no_extra_consecutive_blank_lines
- no_leading_import_slash
- no_leading_namespace_whitespace
- no_short_bool_cast
- no_singleline_whitespace_before_semicolons
- no_trailing_comma_in_singleline_array
- no_unneeded_control_parentheses
- no_unused_imports
- no_whitespace_in_blank_line
- ordered_imports
- phpdoc_no_package
- phpdoc_scalar
- self_accessor
- short_array_syntax
- single_blank_line_before_namespace
- single_quote
- whitespace_after_comma_in_array
finder:
name:
- "*.php"
not-path:
- ".Build"