Skip to content

Commit

Permalink
Fix qa-core lint
Browse files Browse the repository at this point in the history
  • Loading branch information
adrinr committed Nov 17, 2023
1 parent 00f65f3 commit 4b5fa1d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
14 changes: 14 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
},
{
"files": ["**/*.ts"],
"excludedFiles": "qa-core/**/*",
"parser": "@typescript-eslint/parser",
"extends": ["eslint:recommended"],
"rules": {
Expand All @@ -45,6 +46,19 @@
"no-prototype-builtins": "off",
"local-rules/no-budibase-imports": "error"
}
},
{
"files": ["**/*.ts"],
"parser": "@typescript-eslint/parser",
"extends": ["eslint:recommended"],
"rules": {
"no-unused-vars": "off",
"no-inner-declarations": "off",
"no-case-declarations": "off",
"no-useless-escape": "off",
"no-undef": "off",
"no-prototype-builtins": "off"
}
}
],
"rules": {
Expand Down
1 change: 0 additions & 1 deletion packages/client/src/components/app/forms/S3Upload.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@
}
const handleChange = e => {
debugger
localFiles = e.detail
let files = Helpers.cloneDeep(e.detail) || []
// remove URL as it contains the full base64 image data
Expand Down

0 comments on commit 4b5fa1d

Please sign in to comment.