Initial commit from Create Next App

This commit is contained in:
2022-08-13 11:29:32 -05:00
commit 8573d61066
24 changed files with 3172 additions and 0 deletions
+47
View File
@@ -0,0 +1,47 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"plugin:react/recommended",
"standard",
"plugin:@next/next/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"react",
"@typescript-eslint"
],
"rules": {
"indent": [
"error",
2
],
"no-use-before-define": "off",
"@typescript-eslint/no-use-before-define": [
"error"
],
"react/react-in-jsx-scope": "off",
"react/jsx-filename-extension": [
"warn",
{
"extensions": [
".tsx"
]
}
]
},
"settings": {
"react": {
"version": "detect"
}
}
}