We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
h
1 parent f6ce0cf commit b464b25Copy full SHA for b464b25
packages/db-ui-elements-stencil/.eslintrc.json
@@ -17,7 +17,14 @@
17
"react/react-in-jsx-scope": 0,
18
"react/jsx-no-bind": 0,
19
"react/no-unknown-property": "off",
20
- "@stencil-community/reserved-member-names": "warn"
+ "@stencil-community/reserved-member-names": "warn",
21
+ "@typescript-eslint/no-unused-vars": [
22
+ "error",
23
+ // ignore function "h" import: "Import { h } is required In order to render JSX in Stencil apps, the h() function must be imported from @stencil/core"
24
+ {
25
+ "varsIgnorePattern": "^h$"
26
+ }
27
+ ]
28
},
29
"settings": {
30
//fix: https://github.com/ionic-team/stencil-eslint/issues/16
0 commit comments