Skip to content

Commit

Permalink
Merge pull request #2 from vscubing/dev
Browse files Browse the repository at this point in the history
raw MVP with old design
  • Loading branch information
bohdancho authored Dec 28, 2023
2 parents 6278cd9 + efdd081 commit 9cf6a9f
Show file tree
Hide file tree
Showing 92 changed files with 1,932 additions and 2,595 deletions.
29 changes: 26 additions & 3 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,35 @@
const config = {
root: true,
env: { browser: true, es2020: true, node: true },
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:react-hooks/recommended'],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended-type-checked',
'plugin:@typescript-eslint/stylistic-type-checked',
'plugin:react-hooks/recommended',
'plugin:@tanstack/eslint-plugin-query/recommended',
],
ignorePatterns: ['dist', 'node_modules', '!.*.*'],
parser: '@typescript-eslint/parser',
plugins: ['react-refresh'],
parserOptions: { project: true },
plugins: ['react-refresh', '@typescript-eslint'],
rules: {
'react-refresh/only-export-components': ['warn', { allowConstantExport: true }],
'@typescript-eslint/array-type': 'off',
'@typescript-eslint/consistent-type-definitions': 'off',
'@typescript-eslint/prefer-nullish-coalescing': 'off',
'@typescript-eslint/consistent-type-imports': [
'warn',
{
prefer: 'type-imports',
fixStyle: 'inline-type-imports',
},
],
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
'@typescript-eslint/no-misused-promises': [
2,
{
checksVoidReturn: { attributes: false },
},
],
},
}

Expand Down
Binary file added bun.lockb
Binary file not shown.
Loading

0 comments on commit 9cf6a9f

Please sign in to comment.