From bbc40c01ef9eef6d7dd70c63a2628cef53edef25 Mon Sep 17 00:00:00 2001 From: cdce8p <30130371+cdce8p@users.noreply.github.com> Date: Thu, 1 Mar 2018 18:34:12 +0100 Subject: [PATCH] Updated doc for script/lint (#4753) --- source/developers/development_testing.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/developers/development_testing.markdown b/source/developers/development_testing.markdown index b1bc38d0c29..9884120e0ba 100644 --- a/source/developers/development_testing.markdown +++ b/source/developers/development_testing.markdown @@ -54,10 +54,10 @@ $ pydocstyle homeassistant/core.py $ py.test tests/test_core.py ``` -You can also run linting tests against all changed files, as reported by `git diff upstream/dev --name-only`, using the `lint` script: +You can also run linting tests against all changed files, as reported by `git diff upstream/dev... --name-only`, using the `lint` script: ```bash -$ script/lint --changed +$ script/lint ``` ### {% linkable_title Preventing Linter Errors %}