Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
module.exports = {
parser: "@typescript-eslint/parser",
parserOptions: {
project: "tsconfig.json",
sourceType: "module",
},
plugins: ["@typescript-eslint/eslint-plugin"],
extends: [
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
"prettier/@typescript-eslint",
],
root: true,
env: {
node: true,
jest: true,
},
rules: {
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-explicit-any": "off",
},
}
2 changes: 1 addition & 1 deletion components/molecules/NextListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ type Props = {
* Next.js optimized <ListItem>
* @param props Props
*/
export const NextListItem = function(props: Props) {
export const NextListItem = function (props: Props) {
const { className, href, icon, primary, secondary, onClick } = props
const classes = useStyles(props)
const AvatorIcon = () => icon
Expand Down
2 changes: 1 addition & 1 deletion components/molecules/ReduxSagaResponse.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type Props = {
* redux-saga response component
* @param props Props
*/
export const ReduxSagaResponse = function(props: Props) {
export const ReduxSagaResponse = function (props: Props) {
const classes = useStyles(props)
const { responses } = props
return (
Expand Down
2 changes: 1 addition & 1 deletion components/organisms/HeaderArticleContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type Props = {
* Header and article container component
* @param props Props
*/
export const HeaderArticleContainer = function(props: Props) {
export const HeaderArticleContainer = function (props: Props) {
const { children } = props
const classes = useStyles(props)
return (
Expand Down
Loading