committed by
GitHub
8 changed files with 361 additions and 3712 deletions
@ -1 +0,0 @@ |
|||||
new-frontend/src/client/** |
|
@ -0,0 +1,18 @@ |
|||||
|
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 }, |
||||
|
], |
||||
|
}, |
||||
|
} |
@ -1,13 +0,0 @@ |
|||||
{ |
|
||||
"env": { |
|
||||
"browser": true, |
|
||||
"es2021": true |
|
||||
}, |
|
||||
"extends": ["standard-with-typescript", "plugin:react/recommended"], |
|
||||
"parserOptions": { |
|
||||
"ecmaVersion": "latest", |
|
||||
"sourceType": "module" |
|
||||
}, |
|
||||
"plugins": ["react"], |
|
||||
"rules": {} |
|
||||
} |
|
@ -1 +0,0 @@ |
|||||
new-frontend/src/client/** |
|
@ -1,10 +0,0 @@ |
|||||
{ |
|
||||
"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