Skip to content

Commit

Permalink
Fix eslint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jmerle committed Aug 4, 2024
1 parent 993d75c commit bc271f7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"package:firefox": "pnpm build:firefox && web-ext build -s build-firefox/ -a dist/ -o -n {name}-{version}-firefox.zip",
"generate-banners": "tsx scripts/generate-banners.ts",
"lint": "pnpm run \"/^lint:.*/\"",
"lint:eslint": "eslint --format codeframe 'src/**' 'tests/**' 'scripts/**' jest.config.ts",
"lint:eslint": "eslint --format codeframe 'src/**/*.ts' 'tests/**/*.ts' 'scripts/**/*.ts' jest.config.ts",
"lint:prettier": "prettier --check --ignore-path .gitignore '**/*.{ts,js,html,yml,json}'",
"lint:tsc": "tsc --noEmit",
"lint:package": "pnpm build:firefox && web-ext lint -s build-firefox/ -o text",
Expand Down Expand Up @@ -108,6 +108,12 @@
"allowArgumentsExplicitlyTypedAsAny": true
}
],
"@typescript-eslint/no-unused-vars": [
"error",
{
"caughtErrors": "none"
}
],
"import/order": [
"error",
{
Expand Down

0 comments on commit bc271f7

Please sign in to comment.