Advertisement
Guest User

Untitled

a guest
Jul 24th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. module.exports = {
  2.  
  3. // Add p5 globals here that are not functions here
  4. "globals": {
  5. "p5": "off"
  6. },
  7.  
  8. "rules": {
  9. "no-unused-vars": [
  10. "error", {
  11. "vars": "local",
  12. "args": "after-used",
  13. "ignoreRestSiblings": false,
  14.  
  15. // Add p5 global functions to this regex with after an "|", which means: "or"
  16. "varsIgnorePattern": "setup|draw|mouseClicked"
  17. }
  18. ],
  19. }
  20. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement