* stricter linter

* Update .eslintrc.js

* Update control-points.js
This commit is contained in:
JFH
2021-05-01 15:26:36 +02:00
committed by GitHub
parent 0d2048c53d
commit a90fe20d32
77 changed files with 273 additions and 647 deletions

View File

@@ -27,7 +27,7 @@ This is the general format for an extension:
```js
export default {
name: 'extensionname',
init (methods) {
init (_methods) {
return extensionData;
}
};
@@ -83,7 +83,7 @@ export default {
mouseDown () {
// ...
},
mouseUp (opts) {
mouseUp (_opts) {
// ...
}
};