PluginProbe
Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages / 2.7.7
Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages v2.7.7
3.4.1 3.4.0 3.3.9 3.3.8 3.3.7 3.3.6 3.3.5 3.3.4 3.3.3 3.3.2 3.3.1 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.2.8 2.2.9 2.3.0 2.3.1 2.3.2 2.3.3 All 194 releases
convertkit / phpstan-dev.neon

phpstan-dev.neon in Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages 2.7.7, at phpstan-dev.neon

38 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 # PHPStan configuration for Dev Containers
2
3 # Include PHPStan for WordPress configuration.
4 includes:
5 - vendor/szepeviktor/phpstan-wordpress/extension.neon
6
7 # Parameters
8 parameters:
9 # Paths to scan
10 # This should comprise of the base Plugin PHP file, plus directories that contain Plugin PHP files
11 paths:
12 - wp-convertkit.php
13 - admin/
14 - includes/
15
16 # Files that include Plugin-specific PHP constants.
17 bootstrapFiles:
18 - wp-convertkit.php
19
20 # Location of WordPress Plugins for PHPStan to scan, building symbols.
21 scanDirectories:
22 - /wp/wp-content/plugins
23
24 # Location of constants, Kit helper functions and Kit WordPress Libraries for PHPStan to scan, building symbols.
25 scanFiles:
26 - /wp/wp-config.php
27
28 # Don't report unmatched ignored errors on older PHP versions (7.2, 7.3)
29 reportUnmatchedIgnoredErrors: false
30
31 # Ignore the following errors, as PHPStan and PHPStan for WordPress haven't correctly registered symbols,
32 # so they're false positives.
33 ignoreErrors:
34 - '#Function __ invoked with 2 parameters, 1 required.#'
35
36 # Should not need to edit anything below here
37 # Rule Level: https://phpstan.org/user-guide/rule-levels
38 level: 5