Last active
December 1, 2015 16:24
-
-
Save kozak127/b755e5ade140be0a979c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
/* | |
If complete_parameters is true, anaconda will add function and class | |
parameters to its completions. | |
If complete_all_parameters is true, it will add all the possible | |
parameters, if it's false, it will add only required parameters | |
*/ | |
"complete_parameters": true, | |
"complete_all_parameters": true, | |
/* | |
If you set the following option as true, anaconda will display the | |
signatures of the methods you are using while typing | |
*/ | |
"display_signatures": true, | |
/* | |
Sets the linting behaviour for anaconda: | |
"always" - Linting works always even while you are writing (in the background) | |
"load-save" - Linting works in file load and save only | |
"save-only" - Linting works in file save only | |
*/ | |
"anaconda_linting_behaviour": "load-save", | |
/* | |
A list of pep8 error numbers to ignore. | |
The list of error codes is in this file: https://github.com/jcrocholl/pep8/blob/master/pep8.py. | |
Search for "Ennn:", where nnn is a 3-digit number. | |
*/ | |
"pep8_ignore": | |
[ | |
"E501" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment