Skip to content

Commit

Permalink
Merge pull request #229 from SW-CSS/develop
Browse files Browse the repository at this point in the history
RELEASE
  • Loading branch information
llddang authored Nov 29, 2024
2 parents 0dbb00a + 4a16487 commit 5789651
Show file tree
Hide file tree
Showing 197 changed files with 2,550 additions and 4,331 deletions.
4 changes: 0 additions & 4 deletions frontend/.babelrc

This file was deleted.

56 changes: 2 additions & 54 deletions frontend/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,56 +1,4 @@
{
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "react", "tailwindcss"],
"extends": [
"next/core-web-vitals",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"airbnb",
"airbnb/hooks",
"airbnb-typescript",
"plugin:import/typescript",
"plugin:import/recommended"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"prettier/prettier": ["error", { "endOfLine": "auto" }],
"max-len": ["warn", { "code": 120 }],
"react/react-in-jsx-scope": "off",
"import/extensions": "off",
"react/function-component-definition": [
"error",
{
"namedComponents": ["arrow-function"]
}
],
"import/order": [
"error",
{
"groups": ["builtin", "external", "internal", ["sibling", "parent", "index"], "type"],
"pathGroupsExcludedImportTypes": [],
"newlines-between": "always",
"alphabetize": {
"order": "asc",
"caseInsensitive": true
}
}
],
"object-curly-newline": "off",
"react/jsx-one-expression-per-line": "off",
"no-param-reassign": "off",
"import/prefer-default-export": "off",
"react/jsx-props-no-spreading": "off",
"react/require-default-props": "off"
},
"settings": {
"import/resolver": {
"node": {},
"typescript": {
"directory": "./src"
}
},
"import/parsers": { "@typescript-eslint/parser": [".ts", ".tsx"] }
}
"extends": ["next/core-web-vitals"],
"rules": { "react-hooks/exhaustive-deps": "off", "@next/next/no-img-element": "off" }
}
9 changes: 0 additions & 9 deletions frontend/babel.config.json

This file was deleted.

16 changes: 12 additions & 4 deletions frontend/next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
compiler: {
styledComponents: true,
},
images: {
domains: ['localhost', 'swcss.pusan.ac.kr'],
remotePatterns: [
{
protocol: 'http',
hostname: 'localhost',
pathname: '**',
},
{
protocol: 'https',
hostname: 'swcss.pusan.ac.kr',
pathname: '**',
},
],
},
};

Expand Down
Loading

0 comments on commit 5789651

Please sign in to comment.