Skip to content

Commit

Permalink
chart update
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Bliss authored and Jeff Bliss committed Aug 28, 2024
1 parent d379ae8 commit 177dd76
Show file tree
Hide file tree
Showing 11 changed files with 707 additions and 330 deletions.
38 changes: 38 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"root": true,
"env": {
"browser": true,
"es2020": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react/jsx-runtime",
"plugin:react-hooks/recommended",
"prettier"
],
"ignorePatterns": [
"dist"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"settings": {
"react": {
"version": "18.2"
}
},
"plugins": [
"react-refresh"
],
"rules": {
"react/jsx-no-target-blank": "off",
"react-refresh/only-export-components": [
"warn",
{
"allowConstantExport": true
}
]
}
}
22 changes: 0 additions & 22 deletions .eslintrc.cjs

This file was deleted.

13 changes: 13 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"printWidth": 120,
"useTabs": false,
"tabWidth": 2,
"trailingComma": "es5",
"semi": true,
"singleQuote": true,
"bracketSpacing": true,
"arrowParens": "always",
"jsxSingleQuote": false,
"bracketSameLine": false,
"endOfLine": "lf",
}
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
</head>
<body style="height: 100%; margin: 0">
<div id="root" style="height: 100%; margin: 0"></div>
<script type="module" src="/src/main.jsx"></script>
<script type="module" src="./src/main.jsx"></script>
</body>
</html>
Loading

0 comments on commit 177dd76

Please sign in to comment.