Browse Source
Co-authored-by: User <alejsdev@gmail.com> Co-authored-by: Alejandra <90076947+alejsdev@users.noreply.github.com>pull/13907/head
committed by
GitHub
6 changed files with 335 additions and 2429 deletions
@ -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 }, |
|||
], |
|||
}, |
|||
} |
@ -1 +0,0 @@ |
|||
src/client/ |
@ -1,8 +0,0 @@ |
|||
{ |
|||
"bracketSpacing": true, |
|||
"semi": false, |
|||
"singleQuote": true, |
|||
"trailingComma": "all", |
|||
"printWidth": 80, |
|||
"tabWidth": 2 |
|||
} |
@ -0,0 +1,31 @@ |
|||
{ |
|||
"$schema": "https://biomejs.dev/schemas/1.6.1/schema.json", |
|||
"organizeImports": { |
|||
"enabled": true |
|||
}, |
|||
"files": { |
|||
"ignore": ["node_modules", "src/client/"] |
|||
}, |
|||
"linter": { |
|||
"enabled": true, |
|||
"rules": { |
|||
"recommended": true, |
|||
"suspicious": { |
|||
"noExplicitAny": "off", |
|||
"noArrayIndexKey": "off" |
|||
}, |
|||
"style": { |
|||
"noNonNullAssertion": "off" |
|||
} |
|||
} |
|||
}, |
|||
"formatter": { |
|||
"indentStyle": "space" |
|||
}, |
|||
"javascript": { |
|||
"formatter": { |
|||
"quoteStyle": "single", |
|||
"semicolons": "asNeeded" |
|||
} |
|||
} |
|||
} |
File diff suppressed because it is too large
Loading…
Reference in new issue