Initial commit

This commit is contained in:
VityaSchel
2023-10-01 18:53:04 +04:00
commit 0bb5f022e9
23 changed files with 3239 additions and 0 deletions

46
.eslintrc.js Normal file
View File

@@ -0,0 +1,46 @@
module.exports = {
'env': {
'browser': true,
'es2021': true,
'node': true
},
'extends': [
'next/core-web-vitals',
'eslint:recommended',
'plugin:react/recommended',
'plugin:@typescript-eslint/recommended'
],
'parser': '@typescript-eslint/parser',
'parserOptions': {
'ecmaFeatures': {
'jsx': true
},
'ecmaVersion': 'latest',
'sourceType': 'module'
},
'plugins': [
'react',
'@typescript-eslint'
],
'rules': {
'indent': [
'warn',
2,
{ SwitchCase: 1 }
],
'linebreak-style': [
'error',
'unix'
],
'quotes': [
'warn',
'single'
],
'semi': [
'error',
'never'
],
'react/react-in-jsx-scope': 'off',
'no-async-promise-executor': 'off'
}
}