Skip to content

Commit fb24e96

Browse files
committed
feat(config): 프론트엔드 config 추가
1 parent 4890dde commit fb24e96

8 files changed

+144
-0
lines changed

.editorconfig

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
root = true
2+
3+
[*.tsx]
4+
indent_style = space

.eslintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
jest.config.js
2+
next.config.js

.eslintrc.js

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
module.exports = {
2+
root: true,
3+
parser: "@typescript-eslint/parser",
4+
plugins: ["@typescript-eslint", "prettier"],
5+
parserOptions: {
6+
project: "./tsconfig.json",
7+
},
8+
env: {
9+
node: true,
10+
},
11+
extends: [
12+
"next/core-web-vitals",
13+
"plugin:@typescript-eslint/recommended",
14+
"airbnb",
15+
"airbnb-typescript",
16+
"plugin:prettier/recommended",
17+
],
18+
rules: {
19+
// 'React' must be in scope when using JSX 에러 지우기(Next.js)
20+
"react/react-in-jsx-scope": "off",
21+
// ts파일에서 tsx구문 허용(Next.js)
22+
"@typescript-eslint/no-use-before-define": "off",
23+
"react/jsx-filename-extension": [1, { extensions: [".ts", ".tsx"] }], // should add ".ts" if typescript project
24+
"no-unused-vars": "off",
25+
"no-param-reassign": "off",
26+
"@typescript-eslint/no-unused-vars": "warn",
27+
"jsx-a11y/click-events-have-key-events": 0,
28+
"jsx-a11y/no-static-element-interactions": 0,
29+
"import/no-cycle": 0,
30+
"react/require-default-props": 0,
31+
"react/jsx-props-no-spreading": 0,
32+
"no-empty-interface": 0,
33+
"import/prefer-default-export": "off",
34+
"jsx-a11y/label-has-associated-control": [
35+
2,
36+
{
37+
labelAttributes: ["htmlFor"],
38+
},
39+
],
40+
"react/no-array-index-key": 0,
41+
"consistent-return": 0,
42+
},
43+
};

.eslintrc.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "next/core-web-vitals"
3+
}

.prettierignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
package-lock.json

.prettierrc.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
module.exports = {
2+
printWidth: 80,
3+
semi: true,
4+
singleQuote: false,
5+
trailingComma: "all",
6+
tabWidth: 2,
7+
bracketSpacing: true,
8+
endOfLine: "auto",
9+
useTabs: false,
10+
arrowParens: "always",
11+
};

jest.config.js

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
// jest.config.js
2+
module.exports = {
3+
collectCoverage: true,
4+
// on node 14.x coverage provider v8 offers good speed and more or less good report
5+
coverageProvider: "v8",
6+
collectCoverageFrom: [
7+
"**/*.{js,jsx,ts,tsx}",
8+
"!**/e2e/**",
9+
"!**/*.d.ts",
10+
"!**/node_modules/**",
11+
"!<rootDir>/out/**",
12+
"!<rootDir>/.next/**",
13+
"!<rootDir>/*.config.js",
14+
"!<rootDir>/*.config.ts",
15+
"!<rootDir>/*rc.js",
16+
"!<rootDir>/coverage/**",
17+
],
18+
moduleNameMapper: {
19+
// Handle CSS imports (with CSS modules)
20+
// https://jestjs.io/docs/webpack#mocking-css-modules
21+
"^.+\\.module\\.(css|sass|scss)$": "identity-obj-proxy",
22+
23+
// Handle CSS imports (without CSS modules)
24+
"^.+\\.(css|sass|scss)$": "<rootDir>/__mocks__/styleMock.js",
25+
26+
// Handle image imports
27+
// https://jestjs.io/docs/webpack#handling-static-assets
28+
"^.+\\.(png|jpg|jpeg|gif|webp|avif|ico|bmp|svg)$/i": `<rootDir>/__mocks__/fileMock.js`,
29+
30+
// Handle module aliases
31+
"^@/components/(.*)$": "<rootDir>/components/$1",
32+
},
33+
// Add more setup options before each test is run
34+
// setupFilesAfterEnv: ['<rootDir>/jest.setup.js'],
35+
testPathIgnorePatterns: [
36+
"<rootDir>/node_modules/",
37+
"<rootDir>/.next/",
38+
"<rootDir>/e2e/",
39+
],
40+
transform: {
41+
// Use babel-jest to transpile tests with the next/babel preset
42+
// https://jestjs.io/docs/configuration#transform-objectstring-pathtotransformer--pathtotransformer-object
43+
"^.+\\.(js|jsx|ts|tsx)$": ["babel-jest", { presets: ["next/babel"] }],
44+
},
45+
transformIgnorePatterns: [
46+
"/node_modules/",
47+
"^.+\\.module\\.(css|sass|scss)$",
48+
],
49+
};

tsconfig.json

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es5",
4+
"lib": ["dom", "dom.iterable", "esnext"],
5+
"allowJs": true,
6+
"skipLibCheck": true,
7+
"strict": true,
8+
"forceConsistentCasingInFileNames": true,
9+
"noEmit": true,
10+
"esModuleInterop": true,
11+
"module": "esnext",
12+
"moduleResolution": "node",
13+
"resolveJsonModule": true,
14+
"isolatedModules": true,
15+
"jsx": "preserve",
16+
"incremental": true,
17+
"baseUrl": "./",
18+
"paths": {
19+
"@/*": ["./*"]
20+
}
21+
},
22+
"include": [
23+
"next-env.d.ts",
24+
"**/*.ts",
25+
"**/*.tsx",
26+
"tailwind.config.js",
27+
".eslintrc.js"
28+
],
29+
"exclude": ["node_modules"]
30+
}

0 commit comments

Comments
 (0)