Skip to content

Commit

Permalink
Merge pull request #691 from yulrang/Next-LeeYoul-sprint10
Browse files Browse the repository at this point in the history
[이율] Sprint 10
  • Loading branch information
kich555 authored Jun 17, 2024
2 parents 05928a6 + cd00094 commit 6baae0d
Show file tree
Hide file tree
Showing 109 changed files with 3,285 additions and 2,096 deletions.
48 changes: 48 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
module.exports = {
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: 2020,
sourceType: "module",
ecmaFeatures: {
jsx: true,
},
project: "./tsconfig.json",
},
extends: [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:@typescript-eslint/recommended",
"airbnb",
"airbnb/hooks",
"airbnb-typescript",
"plugin:jsx-a11y/recommended",
"next/core-web-vitals",
"prettier",
],
plugins: ["react", "react-hooks", "@typescript-eslint", "jsx-a11y", "import", "prettier"],
rules: {
"prettier/prettier": "error",
"react/react-in-jsx-scope": "off", // Next.js doesn't require React to be in scope
// 'import/prefer-default-export': 'off',
// '@typescript-eslint/explicit-module-boundary-types': 'off',
"react/prop-types": "off",
"no-console": "error",
"react/jsx-props-no-spreading": "off",
"prettier/prettier": [
"error",
{
endOfLine: "auto",
useTabs: false,
},
],
},
settings: {
react: {
version: "detect",
},
"import/resolver": {
typescript: {},
},
},
};
3 changes: 0 additions & 3 deletions .eslintrc.json

This file was deleted.

4 changes: 4 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module.exports = {
printWidth: 200,
tabWidth: 2,
};
30 changes: 0 additions & 30 deletions app/additem/layout.tsx

This file was deleted.

125 changes: 0 additions & 125 deletions app/additem/page.tsx

This file was deleted.

30 changes: 0 additions & 30 deletions app/boards/layout.tsx

This file was deleted.

146 changes: 0 additions & 146 deletions app/items/[productId]/page.tsx

This file was deleted.

Loading

0 comments on commit 6baae0d

Please sign in to comment.