I am using the Pylint linter package in atom on Windows when ever i use tab indentation it gives me the following error:
W0311 Bad indentation Found 1 spaces, Expected 4.
even though atom is using a 'tab' (tab type is hard)
I created a .pylintrc
Pylint configuration file using :
pylint --generate-rcfile > .pylintrc
and added
--disable=W0311
under the [message control] section.
Also in the settings of the atom package i entered the location of the RC config file. I restarted atom and it's still producing the error message W0311 on every line.
How can I get rid of this message?