From e56c010360ac26552801988d8f14092518286c78 Mon Sep 17 00:00:00 2001 From: SpainTrain Date: Mon, 17 Aug 2015 17:52:54 -0400 Subject: [PATCH] README: Update with latest config parameters --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6c4c1a2..e199829 100644 --- a/README.md +++ b/README.md @@ -10,9 +10,9 @@ This package will lint your opened Python-files in Atom, using [pylint](http://w ## Configuration * **Executable** Path to your pylint executable. This is useful if you have different versions of pylint for Python 2 and 3 or if you are using a virtualenv -* **RC File** Path to a custom pylintrc -* **Message Format** The format of the linter messages. It may include `%s` -and `%i` for the Pylint human-readable and numeric message IDs. +* **Message Format** Format for Pylint messages where %m is the message, %i is the numeric mesasge ID (e.g. W0613) and %s is the human-readable message ID (e.g. unused-argument). +* **Python Path** Paths to be added to the `PYTHONPATH` environment variable. Use `%p` for the current project directory (no trailing /). E.g., `%p/vendor` +* **Rc File** Path to a custom pylintrc ## Other available linters There are other linters available - take a look at the linters [mainpage](https://github.com/AtomLinter/Linter).