Skip to content

Commit

Permalink
Merge pull request #3 from cmg8431/release/1.0.0
Browse files Browse the repository at this point in the history
v1.0.0 배포 (22.01.11)
  • Loading branch information
cmg8431 committed Jan 11, 2023
2 parents 74aa354 + a57e39d commit cdab154
Show file tree
Hide file tree
Showing 361 changed files with 21,501 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
root = true

[*]
end_of_line = lf
insert_final_newline = true

[*.{js,json,yml}]
charset = utf-8
indent_style = space
indent_size = 2
8 changes: 8 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
build
node_modules
.yarn
.pnp.cjs
.pnp.loager.mjs
.next
.eslintrc.js
next.config.js
82 changes: 82 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
module.exports = {
root: true,
env: {
es6: true,
browser: true,
},
parser: '@typescript-eslint/parser',
parserOptions: {
project: ['./tsconfig.json'],
},
extends: [
'prettier',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
],
plugins: ['prettier', 'import', 'react', 'react-hooks', 'jsx-a11y'],
rules: {
'global-require': 'off',
'linebreak-style': 'off',
'no-unused-vars': 'off',
'no-use-before-define': 'off',
'no-useless-constructor': 'off',
'no-return-await': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-floating-promises': 'off',
'@typescript-eslint/no-unused-vars': 'warn',
'@typescript-eslint/no-use-before-define': ['error', { variables: false }],
'@typescript-eslint/no-useless-constructor': 'error',
'prettier/prettier': ['error', { endOfLine: 'auto' }],
'import/no-unresolved': 'error',
'import/order': [
'error',
{
groups: [
'builtin',
'external',
'internal',
['parent', 'sibling'],
'index',
],
pathGroups: [
{
pattern: '{react*,react*/**}',
group: 'external',
position: 'before',
},
{
pattern: '{next*,next*/**}',
group: 'external',
position: 'before',
},
],
pathGroupsExcludedImportTypes: ['react', 'next'],
'newlines-between': 'always',
alphabetize: {
order: 'asc',
caseInsensitive: true,
},
},
],
'import/prefer-default-export': 'off',
'react/jsx-filename-extension': ['warn', { extensions: ['.tsx'] }],
'react/jsx-no-target-blank': 'error',
'react/jsx-no-useless-fragment': 'warn',
'react/prop-types': 'off',
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': 'error',
},
settings: {
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx'],
},
'import/extensions': ['.js', '.jsx', '.ts', '.tsx'],
'import/resolver': {
typescript: {
node: {
extensions: ['.ts', '.tsx', '.native.js'],
},
},
},
},
};
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

yarn lint-staged
Loading

1 comment on commit cdab154

@vercel
Copy link

@vercel vercel bot commented on cdab154 Jan 11, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

me – ./

me-peach.vercel.app
me-cmg8431.vercel.app
me-git-main-cmg8431.vercel.app
mingi.me
www.mingi.me

Please sign in to comment.