public function getLinterConfigurationOptions()
 {
     $options = array('phpcs.standard' => array('type' => 'optional string', 'help' => pht('The name or path of the coding standard to use.')));
     return $options + parent::getLinterConfigurationOptions();
 }
Exemplo n.º 2
0
 public function getLinterConfigurationOptions()
 {
     $options = array();
     return $options + parent::getLinterConfigurationOptions();
 }
Exemplo n.º 3
0
 public function getLinterConfigurationOptions()
 {
     $options = array('jshint.jshintignore' => array('type' => 'optional string', 'help' => pht('Pass in a custom jshintignore file path.')), 'jshint.jshintrc' => array('type' => 'optional string', 'help' => pht('Custom configuration file.')));
     return $options + parent::getLinterConfigurationOptions();
 }
Exemplo n.º 4
0
 public function getLinterConfigurationOptions()
 {
     return parent::getLinterConfigurationOptions() + array('lessc.strict-math' => array('type' => 'optional bool', 'help' => pht('Enable strict math, which only processes mathematical expressions ' . 'inside extraneous parentheses.')), 'lessc.strict-units' => array('type' => 'optional bool', 'help' => pht('Enable strict handling of units in expressions.')));
 }
Exemplo n.º 5
0
 public function getLinterConfigurationOptions()
 {
     $options = array('pylint.config' => array('type' => 'optional string', 'help' => pht('Pass in a custom configuration file path.')));
     return $options + parent::getLinterConfigurationOptions();
 }
Exemplo n.º 6
0
 public function getLinterConfigurationOptions()
 {
     $options = array('lint-trap.lintignore' => array('type' => 'optional string', 'help' => pht('Pass in a custom .lintignore file path.')), 'lint-trap.lintrc' => array('type' => 'optional string', 'help' => pht('Custom .lintrc configuration file.')), 'text.max-line-length' => array('type' => 'optional int', 'help' => pht('Adjust the maximum line length before a warning is raised. By ' . 'default, a warning is raised on lines exceeding 80 characters.')));
     return $options + parent::getLinterConfigurationOptions();
 }
 public function getLinterConfigurationOptions()
 {
     $options = array('rubocop.config' => array('type' => 'optional string', 'help' => pht('A custom configuration file.')));
     return $options + parent::getLinterConfigurationOptions();
 }
Exemplo n.º 8
0
 public function getLinterConfigurationOptions()
 {
     $options = array('jar' => array('type' => 'optional string | list<string>', 'help' => pht('Specify a string (or list of strings) identifying the Scalastyle ' . 'JAR file.')), 'config' => array('type' => 'optional string | list<string>', 'help' => pht('Specify a string (or list of strings) identifying the Scalastyle ' . 'config XML file.')));
     return $options + parent::getLinterConfigurationOptions();
 }
 public function getLinterConfigurationOptions()
 {
     $options = array('jscs.config' => array('type' => 'optional string', 'help' => pht('Pass in a custom %s file path.', 'jscsrc')), 'jscs.preset' => array('type' => 'optional string', 'help' => pht('Custom preset.')));
     return $options + parent::getLinterConfigurationOptions();
 }
 public function getLinterConfigurationOptions()
 {
     $options = array('elixirdogma.project-root-dir' => array('type' => 'optional string', 'help' => pht('Adjust the project root directory in which mix is executed.' . 'This is useful in case the Elixir project\'s root' . 'resides in a subdirectory of the repository.')));
     return $options + parent::getLinterConfigurationOptions();
 }
Exemplo n.º 11
0
 public function getLinterConfigurationOptions()
 {
     $options = array('config' => array('type' => 'optional string', 'help' => pht('String containing scalafmt configuration, or path to a ' . 'configuration file')));
     return $options + parent::getLinterConfigurationOptions();
 }
Exemplo n.º 12
0
 public function getLinterConfigurationOptions()
 {
     $options = array('uberLintRepoPath' => array('type' => 'optional string', 'help' => pht('Specify a string identifying the path to the' . 'Uber Mobile iOS Linting repo.')));
     return $options + parent::getLinterConfigurationOptions();
 }
 public function getLinterConfigurationOptions()
 {
     $options = array('clang-format.style' => array('type' => 'optional string', 'help' => pht('Either "file" (to use a .clang-format file in a parent directory ' . 'of the file being checked), a clang-format predefined style, or a ' . 'JSON dictionary of style options. See the docs.')));
     return $options + parent::getLinterConfigurationOptions();
 }
Exemplo n.º 14
0
 public function getLinterConfigurationOptions()
 {
     $options = array('uber-standard.eslintrc' => array('type' => 'optional string', 'help' => pht('Custom .eslintrc configuration file.')));
     return $options + parent::getLinterConfigurationOptions();
 }
Exemplo n.º 15
0
 public function getLinterConfigurationOptions()
 {
     $options = array('eslint.eslintenv' => array('type' => 'optional string', 'help' => pht('enables specific environments.')), 'eslint.eslintconfig' => array('type' => 'optional string', 'help' => pht('config file to use the default is .eslint.')));
     return $options + parent::getLinterConfigurationOptions();
 }
 public function getLinterConfigurationOptions()
 {
     $options = array('yapf.style' => array('type' => 'optional string', 'help' => pht('specify formatting style: either a style name (for example "pep8" ' . 'or "google"), or the name of a file with style settings. The ' . 'default is pep8 unless a .style.yapf or setup.cfg file located in ' . 'one of the parent directories of the source file')));
     return $options + parent::getLinterConfigurationOptions();
 }