From ccd7939a929bd2bcfd6f2f05122998e8b14a1188 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Wed, 19 Jun 2019 18:26:52 +0200 Subject: [PATCH] Remove the linter, since it's no longer developed --- README.rst | 7 +------ docs/docs/features.rst | 3 --- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/README.rst b/README.rst index a5662c28..27faefdc 100644 --- a/README.rst +++ b/README.rst @@ -146,17 +146,12 @@ This means that in Python you can enable tab completion in a `REPL `_. -Static Analysis / Linter +Static Analysis ------------------------ To do all forms of static analysis, please try to use ``jedi.names``. It will return a list of names that you can use to infer types and so on. -Linting is another thing that is going to be part of Jedi. For now you can try -an alpha version ``python -m jedi linter``. The API might change though and -it's still buggy. It's Jedi's goal to be smarter than classic linter and -understand ``AttributeError`` and other code issues. - Refactoring ----------- diff --git a/docs/docs/features.rst b/docs/docs/features.rst index d474b591..3b0318bf 100644 --- a/docs/docs/features.rst +++ b/docs/docs/features.rst @@ -8,9 +8,6 @@ Jedi obviously supports autocompletion. It's also possible to get it working in Static analysis is also possible by using the command ``jedi.names``. -The Jedi Linter is currently in an alpha version and can be tested by calling -``python -m jedi linter``. - Jedi would in theory support refactoring, but we have never publicized it, because it's not production ready. If you're interested in helping out here, let me know. With the latest parser changes, it should be very easy to actually