Move to dashboard theme

This commit is contained in:
Philipp Heckel
2022-02-19 19:48:33 -05:00
parent b497063af4
commit c859f866b8
11 changed files with 5004 additions and 4038 deletions

34
web/.eslintrc.js Normal file
View File

@@ -0,0 +1,34 @@
module.exports = {
parser: "babel-eslint",
env: {
browser: true,
commonjs: true,
es6: true,
node: true,
jest: true,
},
parserOptions: {
ecmaVersion: 2020,
ecmaFeatures: {
impliedStrict: true,
jsx: true,
},
sourceType: "module",
},
plugins: ["react", "react-hooks"],
extends: [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
],
settings: {
react: {
version: "detect",
},
},
rules: {
// You can do your customizations here...
// For example, if you don't want to use the prop-types package,
// you can turn off that recommended rule with: 'react/prop-types': ['off']
},
};