Skip to content

Instantly share code, notes, and snippets.

@vani2
Created July 24, 2016 16:04
Show Gist options
  • Save vani2/cd887bd44be8293ba1895b67677e7eef to your computer and use it in GitHub Desktop.
Save vani2/cd887bd44be8293ba1895b67677e7eef to your computer and use it in GitHub Desktop.
//#1 Первый параметр на одной строке с именем метода, круглые скобки примыкают к параметрам
abc(parameter: "asd",
closure: {
// ...
})
//#2 Первый параметр на новой строке, закрывающая круглая скобка примыкает к параметру
abc(
parameter: "asd",
closure: {
// ...
})
//#3 Python Convention. Первый параметр на новой строке, скобки не примыкают к параметрам:
abc(
parameter: "asd",
closure: {
// ...
}
)
//#4 Ничего не переносим
abc(parameter: "asd", closure: {
// ...
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment