0

I use sublime 3 for python coding, with plugin Anaconda for format checking. But when I read others' codes, I don't need this function, because the whole file is full of format error which I don't care about but the Anaconda lint bothers me. So I would like close the function for this "project" (not current file), what should I do?

Ryan
  • 315
  • 3
  • 10

1 Answers1

2

You can control the state Anaconda linter using the anaconda_linting setting.

"anaconda_linting": false

Working with projects gives you more refined control where you want to use the linter and where not. For instance, you could disable the linter in your global settings and enable it for specific projects.

MattDMo
  • 90,104
  • 20
  • 213
  • 210
idleberg
  • 10,319
  • 7
  • 36
  • 57
  • I have another question, does `pep8_autoformat` support project settings? why setting `"autoformat_on_save": false` in `.sublime-project` doesn't work – Ryan Jul 01 '16 at 01:56