-
Notifications
You must be signed in to change notification settings - Fork 0
Code Convention
조상현 edited this page Oct 9, 2022
·
12 revisions
{
"parser": "@typescript-eslint/parser",
"extends": [
"prettier",
"airbnb",
"airbnb-typescript",
"airbnb/hooks",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"plugins": ["prettier", "react", "@typescript-eslint", "react-hooks"],
"parserOptions": {
"project": "./tsconfig.json"
}
}
{
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "consistent",
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "always"
}