Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F13976585
D9198.id.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Referenced Files
None
Subscribers
None
D9198.id.diff
View Options
diff --git a/src/__phutil_library_map__.php b/src/__phutil_library_map__.php
--- a/src/__phutil_library_map__.php
+++ b/src/__phutil_library_map__.php
@@ -185,7 +185,6 @@
'ArcanistXUnitTestResultParser' => 'unit/engine/ArcanistXUnitTestResultParser.php',
'CSharpToolsTestEngine' => 'unit/engine/CSharpToolsTestEngine.php',
'ComprehensiveLintEngine' => 'lint/engine/ComprehensiveLintEngine.php',
- 'ExampleLintEngine' => 'lint/engine/ExampleLintEngine.php',
'GoTestResultParser' => 'unit/engine/GoTestResultParser.php',
'GoTestResultParserTestCase' => 'unit/engine/__tests__/GoTestResultParserTestCase.php',
'NoseTestEngine' => 'unit/engine/NoseTestEngine.php',
@@ -343,7 +342,6 @@
'ArcanistXMLLinterTestCase' => 'ArcanistArcanistLinterTestCase',
'CSharpToolsTestEngine' => 'XUnitTestEngine',
'ComprehensiveLintEngine' => 'ArcanistLintEngine',
- 'ExampleLintEngine' => 'ArcanistLintEngine',
'GoTestResultParser' => 'ArcanistBaseTestResultParser',
'GoTestResultParserTestCase' => 'ArcanistTestCase',
'NoseTestEngine' => 'ArcanistBaseUnitTestEngine',
diff --git a/src/lint/engine/ExampleLintEngine.php b/src/lint/engine/ExampleLintEngine.php
deleted file mode 100644
--- a/src/lint/engine/ExampleLintEngine.php
+++ /dev/null
@@ -1,66 +0,0 @@
-<?php
-
-/**
- * This a simple example lint engine which just applies the
- * @{class:ArcanistPyLintLinter} to any Python files. For a more complex
- * example, see @{class:PhutilLintEngine}.
- *
- * @group linter
- */
-final class ExampleLintEngine extends ArcanistLintEngine {
-
- public function buildLinters() {
-
- // This is a list of paths which the user wants to lint. Either they
- // provided them explicitly, or arc figured them out from a commit or set
- // of changes. The engine needs to return a list of ArcanistLinter objects,
- // representing the linters which should be run on these files.
- $paths = $this->getPaths();
-
- // The ArcanistPyLintLinter runs "PyLint" (an open source python linter) on
- // files you give it. There are several linters available by default like
- // this one which you can use out of the box, or you can write your own.
- // Linters are responsible for actually analyzing the contents of a file
- // and raising warnings and errors.
- $pylint_linter = new ArcanistPyLintLinter();
-
- // Remove any paths that don't exist before we add paths to linters. We want
- // to do this for linters that operate on file contents because the
- // generated list of paths will include deleted paths when a file is
- // removed.
- foreach ($paths as $key => $path) {
- if (!$this->pathExists($path)) {
- unset($paths[$key]);
- }
- }
-
- foreach ($paths as $path) {
- if (!preg_match('/\.py$/', $path)) {
- // This isn't a python file, so don't try to apply the PyLint linter
- // to it.
- continue;
- }
-
- if (preg_match('@^externals/@', $path)) {
- // This is just an example of how to exclude a path so it doesn't get
- // linted. If you put third-party code in an externals/ directory, you
- // can just have your lint engine ignore it.
- continue;
- }
-
- // Add the path, to tell the linter it should examine the source code
- // to try to find problems.
- $pylint_linter->addPath($path);
- }
-
- // We only built one linter, but you can build more than one (e.g., a
- // Javascript linter for JS), and return a list of linters to execute. You
- // can also add a path to more than one linter (for example, if you want
- // to run a Python linter and a more general text linter on every .py file).
-
- return array(
- $pylint_linter,
- );
- }
-
-}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Oct 19, 2:56 PM (3 w, 3 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6732659
Default Alt Text
D9198.id.diff (3 KB)
Attached To
Mode
D9198: Remove the `ExampleLintEngine` class.
Attached
Detach File
Event Timeline
Log In to Comment