Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[박준환] sprint7 #265

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 0 additions & 19 deletions sprint-mission5/src/Main.js

This file was deleted.

34 changes: 0 additions & 34 deletions sprint-mission5/src/api/api.js

This file was deleted.

20 changes: 0 additions & 20 deletions sprint-mission5/src/components/ItemCard.jsx

This file was deleted.

File renamed without changes.
File renamed without changes.
20 changes: 20 additions & 0 deletions sprint-mission7/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import pluginReact from "eslint-plugin-react";
import airbnbHooks from "eslint-config-airbnb/hooks";

/** @type {import('eslint').Linter.Config[]} */
export default [
{ files: ["**/*.{js,mjs,cjs,jsx}"] },
{
languageOptions: {
ecmaVersion: "latest",
sourceType: "module",
globals: globals.browser,
},
},
{ rules: {} },
pluginJs.configs.recommended,
pluginReact.configs.flat.recommended,
airbnbHooks,
];
Loading
Loading