Team Rule - codestates/Reciper-client GitHub Wiki
- am 10:00 ํ์ ์งํ, ๊ธ์ผ ํด์ผํ ์ผ๋ค์ ์ด์์นด๋์ ์์ฑ
- pm 12:00 ์ ์ฌ ์๊ฐ (1์๊ฐ)
- pm 06:00 ์ ๋ ์๊ฐ (1์๊ฐ)
- pm 09:00 ๊ธ์ผ ์ฝ๋ ๋ฆฌ๋ทฐ + (์,๋ชฉ) KPT ํํ๊ณ ์์ฑ
- pm 10:00 ๊ธ์ผ ๊ฐ์ธ ํ๊ณ ๋ก, Dev Log ์์ฑ
- am 02:30 ์ดํ๋ก ์ฝ๋ฉ์ ํ์ง ์๋๋ค(๊ฑด๊ฐ ์ฑ๊ธฐ๊ธฐ!)
(Dev Branch์์) $git checkout -b [ํ์ด์ง]
์์: $git checkout -b Workspace
[Action] #[์ด์๋ฒํธ] [commit ๋ด์ฉ]
์์: Add #9 logo to header
[Client or Server] [๋ง์ผ์คํค] - ์์ ๋ด์ฉ
์์: [Client] [Common] - Board Page ๊ฒ์ํ ์ถ๊ฐ
module.exports = {
parser: '@typescript-eslint/parser',
extends: ['plugin:react/recommended', 'plugin:@typescript-eslint/recommended'],
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
ecmaFeatures: {
jsx: true,
},
},
rules: {
'no-empty': 'error', // ๋น ๋ธ๋ก๋ฌธ์ ์ง์ํ๋ค.
'default-case': 'error', // switch ๋ฌธ์ default๊ฐ ํฌํจ๋์ด์ผ ํ๋ค.
'default-case-last': 'error', // switch ๋ฌธ์ default๊ฐ ํญ์ ๋ง์ง๋ง์ ์์ฑ๋์ด์ผ ํ๋ค.
'dot-notation': 'error', // dot-notation์ผ๋ก ์์ฑ์ด ๊ฐ๋ฅํ ๊ตฌ๋ฌธ์ braket-notation์ ์ฌ์ฉํ์ง ์์์ผํ๋ค.
'eqeqeq': ['error', 'always'], // '==' ๋ฐ '!=' ์ฌ์ฉ์ ์ง์ํ๋ค.
'prefer-template': 'error', // ๋ฌธ์์ด ์ฐ๊ฒฐ ์ฐ์ฐ์๋ฅผ ์ง์ํ๊ณ ํ
ํ๋ฆฟ ๋ฆฌํฐ๋ด์ ์ฌ์ฉํ๋ค.
},
settings: {
// ์๋ฒ ์ฝ๋์์๋ ์๋์ react ๋ถ๋ถ ์ง์ฐ๊ณ ์ฌ์ฉํ๋ค
react: {
version: 'detect',
},
},
};
{
"printWidth": 120,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"semi": true,
"useTabs": true,
"arrowParens": "avoid",
}