-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathphpcs.xml
More file actions
44 lines (40 loc) · 2 KB
/
phpcs.xml
File metadata and controls
44 lines (40 loc) · 2 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
<?xml version="1.0"?>
<!--
~ PhpMongoAdmin (www.phpmongoadmin.com) by Masterforms Mobile & Web (MFMAW)
~ @version phpcs.xml 1001 15/8/21, 1:27 pm Gilbert Rehling $
~ @package PhpMongoAdmin\resources
~ @subpackage phpcs.xml
~ @link https://github.com/php-mongo/admin PHP MongoDB Admin
~ @copyright Copyright (c) 2021. Gilbert Rehling of MMFAW. All rights reserved. (www.mfmaw.com)
~ @licence PhpMongoAdmin is an Open Source Project released under the GNU GPLv3 license model.
~ @author Gilbert Rehling: gilbert@phpmongoadmin.com (www.gilbert-rehling.com)
~ php-mongo-admin - License conditions:
~ Contributions to our suggestion box are welcome: https://phpmongotools.com/suggestions
~ This web application is available as Free Software and has no implied warranty or guarantee of usability.
~ See licence.txt for the complete licensing outline.
~ See https://www.gnu.org/licenses/license-list.html for information on GNU General Public License v3.0
~ See COPYRIGHT.php for copyright notices and further details.
-->
<ruleset name="PhpMongoAdmin Custom">
<description>PHPCS configuration file.</description>
<file>app</file>
<exclude-pattern>*/bootstrap/*</exclude-pattern>
<exclude-pattern>*/config/*</exclude-pattern>
<exclude-pattern>*/database/*</exclude-pattern>
<exclude-pattern>*/node_modules/*</exclude-pattern>
<exclude-pattern>*/public/*</exclude-pattern>
<exclude-pattern>*/resources/*</exclude-pattern>
<exclude-pattern>*/routes/*</exclude-pattern>
<exclude-pattern>*/storage/*</exclude-pattern>
<exclude-pattern>*/tests/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<!-- Our base rule: set to PSR12-->
<rule ref="PSR12"/>
<!-- Override for PhpMongoAdmin -->
<rule ref="Generic.Files.LineLength">
<properties>
<property name="lineLimit" value="140"/>
<property name="absoluteLineLimit" value="0"/>
</properties>
</rule>
</ruleset>