Skip to content

Commit

Permalink
chore: fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
rabelloo committed Nov 17, 2023
1 parent 7fed64c commit cd3a25c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"build:server": "bun --cwd server build",
"build:storybook": "bun --cwd stories build",
"build:web": "bun --cwd web build",
"postbuild:web": "bunx ts-autofix --project stories/tsconfig.json",
"lint": "concurrently bun:lint:*",
"lint:commit": "commitlint --from origin/main --to HEAD --verbose",
"lint:es": "eslint . --ignore-path .gitignore --report-unused-disable-directives --max-warnings 0",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"jsx": "preserve",

/* Linting */
"strict": true,
Expand Down
2 changes: 1 addition & 1 deletion web/mitosis.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module.exports = {
options: {
preact: { typescript: true },
qwik: { typescript: true },
react: { typescript: true },
react: { typescript: true, stylesType: 'style-tag' },
reactNative: { typescript: true },
solid: { typescript: true },
svelte: { typescript: true },
Expand Down
3 changes: 0 additions & 3 deletions web/src/components/secure/SecureInput.lite.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,10 @@ const searchParams = (props: Props) =>

// eslint-disable-next-line @builder.io/mitosis/only-default-function-and-imports
const inputProps = [
'inputmode',
'inputMode',
'max',
'maxlength',
'maxLength',
'min',
'minlength',
'minLength',
'name',
'pattern',
Expand Down

0 comments on commit cd3a25c

Please sign in to comment.