Skip to content

Commit

Permalink
[feat] : react-md-editro 추가 (#36)
Browse files Browse the repository at this point in the history
Co-authored-by: 유형우/애버커스 <[email protected]>
  • Loading branch information
yoohyungwoo and 유형우/애버커스 authored Feb 14, 2024
1 parent 771e8b5 commit eb3f10f
Show file tree
Hide file tree
Showing 7 changed files with 2,436 additions and 1,808 deletions.
60 changes: 33 additions & 27 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,37 +2,43 @@ module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react-hooks/recommended',
'plugin:storybook/recommended',
'eslint-config-airbnb'
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react-hooks/recommended",
"plugin:storybook/recommended",
"eslint-config-airbnb",
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parser: '@typescript-eslint/parser',
ignorePatterns: ["dist", ".eslintrc.cjs"],
parser: "@typescript-eslint/parser",
parserOptions: {
'ecmaVersion': 6, 'sourceType': 'module', 'ecmaFeatures': {
'jsx': true
}
ecmaVersion: 6,
sourceType: "module",
ecmaFeatures: {
jsx: true,
},
},
"settings": {
settings: {
"import/resolver": {
"alias": {
alias: {
map: [
[ "@components", "./src/components" ],
[ "~", "./src" ],
]
}
}
["@components", "./src/components"],
["~", "./src"],
],
},
},
},
plugins: ['react-refresh'],
plugins: ["react-refresh"],
rules: {
'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
}
}
"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,
"no-console": "off",
"react/prefer-stateless-function": 0,
"react/jsx-one-expression-per-line": 0,
},
};
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
"@radix-ui/react-toggle-group": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@tailwindcss/line-clamp": "^0.4.4",
"@uiw/react-md-editor": "^4.0.3",
"axios": "^1.6.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
Expand Down
Loading

0 comments on commit eb3f10f

Please sign in to comment.