forked from PetDoctor/PetDoctor
-
Notifications
You must be signed in to change notification settings - Fork 1
Code_Style
kjklalala2 edited this page Jul 6, 2022
·
1 revision
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": [
"naver",
"eslint:recommended",
"@typescript-eslint/eslint-recommended",
"@typescript-eslint/recommended",
"prettier"
],
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"browser": true
},
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx", ".js"]
},
"import/resolver": {
"typescript": "./tsconfig.json"
}
},
"rules": {}
}
{
"arrowParens": "always",
"bracketSpacing": true,
"htmlWhitespaceSensitivity": "css",
"jsxSingleQuote": false,
"printWidth": 80,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"endOfLine": "lf",
"semi": true,
"useTabs": false
}
변수, 함수 : camelCase
컴포넌트, 파일 : PascalCase
상수 : UPPERCASE_SNAKE_CASE
폴더 : kebab-case