Skip to content

Commit

Permalink
Merge pull request #1 from OHHAKO/feat-add-victory-chart
Browse files Browse the repository at this point in the history
Feat add victory chart
  • Loading branch information
OHHAKO committed Aug 26, 2022
2 parents 9f5e04d + 6cac627 commit ab3c9ad
Show file tree
Hide file tree
Showing 14 changed files with 17,140 additions and 112 deletions.
25 changes: 5 additions & 20 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"typescript": {
"alwaysTryTypes": true
}
}
},
"import/ignore": [".css$", ".scss", "node_modules/*"]
},
"env": {
"browser": true,
Expand All @@ -32,17 +33,9 @@
"plugin:css-modules/recommended"
],
"ignorePatterns": ".next/",
"plugins": [
"@typescript-eslint",
"import",
"react-hooks",
"css-modules"
],
"plugins": ["@typescript-eslint", "import", "react-hooks", "css-modules"],
"rules": {
"semi": [
"error",
"always"
],
"semi": ["error", "always"],
"import/no-named-as-default-member": "off",
"import/namespace": "off",
"import/order": [
Expand All @@ -52,15 +45,7 @@
"order": "asc",
"caseInsensitive": true
},
"groups": [
"index",
"sibling",
"parent",
"internal",
"external",
"builtin",
"object"
]
"groups": ["index", "sibling", "parent", "internal", "external", "builtin", "object"]
}
],
"jsx-a11y/label-has-associated-control": "off",
Expand Down
7 changes: 5 additions & 2 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
module.exports = {
// eslint-disable-next-line @typescript-eslint/no-var-requires
const withImages = require("next-images");

module.exports = withImages({
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
Expand All @@ -10,4 +13,4 @@ module.exports = {

return config;
},
};
});
Loading

1 comment on commit ab3c9ad

@vercel
Copy link

@vercel vercel bot commented on ab3c9ad Aug 26, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.