Skip to content
Snippets Groups Projects
Commit 26ffc5d4 authored by Matthias Konitzny's avatar Matthias Konitzny :fire:
Browse files

Update .eslintrc.json to not throw errors on unused function arguments.

parent 5fa5cafd
No related branches found
No related tags found
No related merge requests found
Pipeline #49465 failed
......@@ -9,6 +9,7 @@
"sourceType": "module"
},
"rules": {
"no-console": 0
"no-console": 0,
"no-unused-vars": ["error", { "vars": "all", "args": "none"}]
}
}
\ No newline at end of file
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment