Skip to content

Commit

Permalink
feat(packages/eslint-config): changes base config
Browse files Browse the repository at this point in the history
also updates peer dependency versions
  • Loading branch information
deopea-david committed Jan 31, 2023
1 parent fe7dec7 commit 283b5c8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion packages/eslint-config/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const config: TSESLint.Linter.Config = {
plugins: ["@typescript-eslint"],
overrides: [
{
files: ["**/*.cjs"],
files: ["**/*.{js,cjs}"],
env: {
commonjs: true,
node: true,
Expand All @@ -29,6 +29,9 @@ const config: TSESLint.Linter.Config = {
},
},
],
rules: {
"@typescript-eslint/no-empty-interface": "off",
},
};

export = config;
6 changes: 3 additions & 3 deletions packages/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
"typescript": "*"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-qwik": "^0.16.2",
"typescript": "^4.9.4"
"eslint-plugin-qwik": "^0.16.0",
"typescript": "^4.9.0"
},
"homepage": "https://github.com/deopea-os/earth/tree/main/packages/eslint-config",
"repository": {
Expand Down

0 comments on commit 283b5c8

Please sign in to comment.