Commit b8b6ab6b authored by Filipa Lacerda's avatar Filipa Lacerda

Merge branch 'fe-doc-update' into 'master'

Add parameter limit to styleguide

See merge request !10830
parents 60a6389a c49a8fb1
......@@ -71,6 +71,16 @@ See [our current .eslintrc][eslintrc] for specific rules and patterns.
/* global Cookies */
/* global jQuery */
```
- Use up to 3 parameters for a function or class. If you need more accept an Object instead.
```javascript
// bad
fn(p1, p2, p3, p4) {}
// good
fn(options) {}
```
#### Modules, Imports, and Exports
- Use ES module syntax to import modules
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment