-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: deploy storybook on vercel * fix: upgrade lucide-react from 0.294.0 to 0.298.0 Snyk has created this PR to upgrade lucide-react from 0.294.0 to 0.298.0. See this package in npm: https://www.npmjs.com/package/lucide-react See this project in Snyk: https://app.snyk.io/org/chlee125/project/3629c888-cbcc-45e7-85fa-128c9939c472?utm_source=github&utm_medium=referral&page=upgrade-pr * feat: file based routing * fix: upgrade lucide-react * refactor: eslint-airbnb * fix: package.json build --------- Co-authored-by: snyk-bot <snyk-bot@snyk.io>
- Loading branch information
Showing
155 changed files
with
4,446 additions
and
4,294 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,29 @@ | ||
module.exports = { | ||
root: true, | ||
env: { browser: true, es2020: true }, | ||
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:react-hooks/recommended', 'plugin:prettier/recommended', 'plugin:storybook/recommended'], | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/recommended', | ||
'plugin:react-hooks/recommended', | ||
'plugin:storybook/recommended' | ||
], | ||
ignorePatterns: ['dist', '.eslintrc.cjs'], | ||
parser: '@typescript-eslint/parser', | ||
parserOptions: { | ||
'ecmaVersion': 6, 'sourceType': 'module', 'ecmaFeatures': { | ||
'jsx': true | ||
} | ||
}, | ||
plugins: ['react-refresh', 'prettier'], | ||
plugins: ['react-refresh'], | ||
rules: { | ||
'no-unused-vars': ['off'], // 사용하지 않는 변수가 있을때 빌드에러가 나던 규칙 해제 | ||
'arrow-parens': ['warn', 'as-needed'], // 화살표 함수의 파라미터가 하나일때 괄호 생략 | ||
'import/prefer-default-export': ['off'], // export const 문을 쓸때 에러를 내는 규칙 해제 | ||
'no-console': ['off'], // 콘솔을 쓰면 에러가 나던 규칙 해제 | ||
'prettier/prettier': 0, 'react-refresh/only-export-components': ['warn', { allowConstantExport: true }] | ||
'react-refresh/only-export-components': ['warn', { allowConstantExport: true }], | ||
'react/jsx-filename-extension': 0, | ||
'react/react-in-jsx-scope': 0, | ||
'no-shadow': 0, | ||
'no-unresolved': 0, | ||
"react/prefer-stateless-function": 0, | ||
"react/jsx-one-expression-per-line": 0 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ node_modules | |
dist | ||
dist-ssr | ||
*.local | ||
storybook-static | ||
|
||
# Editor directories and files | ||
.vscode/* | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.