Skip to content

Instantly share code, notes, and snippets.

@kozak127
Last active December 1, 2015 16:24
Show Gist options
  • Save kozak127/b755e5ade140be0a979c to your computer and use it in GitHub Desktop.
Save kozak127/b755e5ade140be0a979c to your computer and use it in GitHub Desktop.
{
/*
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