I don't want to ignore the indent level.
I want to enforce a particular indent level that is not the default, 4.
Apparently this is possible:

How?
The documentation on this stuff seems to be eluding me.
|
I don't want to ignore the indent level. I want to enforce a particular indent level that is not the default, 4. Apparently this is possible:
How? The documentation on this stuff seems to be eluding me. |
|||||
|
|
Apparently one way to do it is this: create a new "Standard", create a new ruleset.xml, then insert into that ruleset.xml file, an XML stanza that sets the property. For example, (I'm on Windows so my backslashes are all backslashes and not fwd slashes)
Within that directory, create ruleset.xml, containing this :
The final stanza within the xml file sets the appropriate property. To do this, you have to know that A) the indenting sniff (rule) is PEAR.WhiteSpace.ScopeIndent B) the property on that sniff is called Then, run phpcs as normal like so:
documentation: http://pear.php.net/manual/en/package.php.php-codesniffer.annotated-ruleset.php |
||||
|
|