ClosureLinterSniff
in package
implements
Sniff
Interfaces, Classes and Traits
Table of Contents
- $errorCodes : int
- A list of error codes that should show errors.
- $ignoreCodes : int
- A list of error codes to ignore.
- $supportedTokenizers : array<string|int, mixed>
- A list of tokenizers this sniff supports.
- process() : void
- Processes the tokens that this sniff is interested in.
- register() : array<string|int, int>
- Returns the token types that this sniff is interested in.
Properties
$errorCodes
A list of error codes that should show errors.
public
int
$errorCodes
= []
All other error codes will show warnings.
$ignoreCodes
A list of error codes to ignore.
public
int
$ignoreCodes
= []
$supportedTokenizers
A list of tokenizers this sniff supports.
public
array<string|int, mixed>
$supportedTokenizers
= ['JS']
Methods
process()
Processes the tokens that this sniff is interested in.
public
process(File $phpcsFile, int $stackPtr) : void
Parameters
- $phpcsFile : File
-
The file where the token was found.
- $stackPtr : int
-
The position in the stack where the token was found.
Tags
Return values
void —register()
Returns the token types that this sniff is interested in.
public
register() : array<string|int, int>