- eslint : airbnb + TS
- prettier
{ "extends": ["react-app", "airbnb", "prettier", "plugin:react/jsx-runtime"], "rules": { "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }], "react/jsx-props-no-spreading": "OFF", "react/function-component-definition": "OFF", "react/require-default-props": "OFF", "no-unused-expressions": ["error", { "allowShortCircuit": true }], "no-underscore-dangle": "off" } }
{ "printWidth": 80, "singleQuote": false, "semi": true, "useTabs": false, "tabWidth": 2, "trailingComma": "es5", "quoteProps": "as-needed", "jsxSingleQuote": false, "bracketSpacing": true, "bracketSameLine": false, "arrowParens": "always", "endOfLine": "lf", "singleAttributePerLine": false }