Skip to content

Commit

Permalink
react-query 관련 plugin 분리
Browse files Browse the repository at this point in the history
react-query 관련 plugin 분리
  • Loading branch information
youngseo-kangg authored Jan 22, 2025
2 parents baebe84 + d112a50 commit 8f17f6f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/swift-geckos-learn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@youngseo-kangg/eslint-plugin": minor
---

react-query 관련 plugin 분리
2 changes: 2 additions & 0 deletions packages/eslint/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ const auto = require("./src/auto");
const base = require("./src/base");
const react = require("./src/react");
const typescript = require("./src/typescript");
const query = require("./src/query");

module.exports = {
extends: ["@rushstack/eslint-config/profile/web-app"],
Expand All @@ -10,5 +11,6 @@ module.exports = {
base,
react,
typescript,
query,
},
};
3 changes: 3 additions & 0 deletions packages/eslint/src/query.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
extends: ["plugin:@tanstack/eslint-plugin-query/recommended"],
};

0 comments on commit 8f17f6f

Please sign in to comment.