-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bypass unused param #87
Conversation
src/Incidents/HTMLClip.js
Outdated
@@ -13,7 +14,7 @@ import { HTMLClip } from "@donkeyclip/motorcortex"; | |||
*/ | |||
export default class MyHTMLClip extends HTMLClip { | |||
get html() { | |||
return "<div></div>"; | |||
return <div></div>; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [eslint] reported by reviewdog 🐶
Parsing error: This experimental syntax requires enabling one of the following parser plugin(s): "jsx", "flow", "typescript". (17:11)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@andreas-trad you also got to fix this, before merging
📊 Package size report 3%↑
Unchanged files
🤖 This report was automatically generated by pkg-size-action |
src/Incidents/HTMLClip.js
Outdated
@@ -13,7 +14,7 @@ import { HTMLClip } from "@donkeyclip/motorcortex"; | |||
*/ | |||
export default class MyHTMLClip extends HTMLClip { | |||
get html() { | |||
return "<div></div>"; | |||
return <div></div>; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@andreas-trad you also got to fix this, before merging
@@ -2,7 +2,7 @@ import babel from "@rollup/plugin-babel"; | |||
import commonjs from "@rollup/plugin-commonjs"; | |||
import json from "@rollup/plugin-json"; | |||
import resolve from "@rollup/plugin-node-resolve"; | |||
import { terser } from "rollup-plugin-terser"; | |||
import terser from '@rollup/plugin-terser'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [eslint] <prettier/prettier> reported by reviewdog 🐶
Replace '@rollup/plugin-terser'
with "@rollup/plugin-terser"
import terser from '@rollup/plugin-terser'; | |
import terser from "@rollup/plugin-terser"; |
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
This pr enables jsx for plugin development