committed by
GitHub
8 changed files with 3601 additions and 250 deletions
@ -0,0 +1 @@ |
|||||
|
new-frontend/src/client/** |
@ -1,18 +0,0 @@ |
|||||
module.exports = { |
|
||||
root: true, |
|
||||
env: { browser: true, es2020: true }, |
|
||||
extends: [ |
|
||||
'eslint:recommended', |
|
||||
'plugin:@typescript-eslint/recommended', |
|
||||
'plugin:react-hooks/recommended', |
|
||||
], |
|
||||
ignorePatterns: ['dist', '.eslintrc.cjs'], |
|
||||
parser: '@typescript-eslint/parser', |
|
||||
plugins: ['react-refresh'], |
|
||||
rules: { |
|
||||
'react-refresh/only-export-components': [ |
|
||||
'warn', |
|
||||
{ allowConstantExport: true }, |
|
||||
], |
|
||||
}, |
|
||||
} |
|
@ -0,0 +1,13 @@ |
|||||
|
{ |
||||
|
"env": { |
||||
|
"browser": true, |
||||
|
"es2021": true |
||||
|
}, |
||||
|
"extends": ["standard-with-typescript", "plugin:react/recommended"], |
||||
|
"parserOptions": { |
||||
|
"ecmaVersion": "latest", |
||||
|
"sourceType": "module" |
||||
|
}, |
||||
|
"plugins": ["react"], |
||||
|
"rules": {} |
||||
|
} |
@ -0,0 +1 @@ |
|||||
|
new-frontend/src/client/** |
@ -0,0 +1,10 @@ |
|||||
|
{ |
||||
|
"semi": true, |
||||
|
"trailingComma": "all", |
||||
|
"singleQuote": true, |
||||
|
"printWidth": 80, |
||||
|
"tabWidth": 2, |
||||
|
"importOrder": ["^@core/(.*)$", "^@server/(.*)$", "^@ui/(.*)$", "^[./]"], |
||||
|
"importOrderSeparation": true, |
||||
|
"importOrderSortSpecifiers": true |
||||
|
} |
File diff suppressed because it is too large
Loading…
Reference in new issue