Skip to content

Commit

Permalink
feat: upgrading to rxdb 15.X (#100)
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
Upgrading to RXDB 15.X, migrations from older version has not been tested.
Potentially old databases created in 14.X need to be recreated, but may not!!
  • Loading branch information
elribonazo authored Jun 15, 2024
1 parent 60f3791 commit dc0c731
Show file tree
Hide file tree
Showing 124 changed files with 12,043 additions and 23,346 deletions.
58 changes: 58 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"ignorePatterns": [
"docs",
"docs-html",
"packages/*/build"
],
"plugins": [
"@typescript-eslint",
"unused-imports"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"no-inner-declarations": "off",
"comma-dangle": 0,
"no-unexpected-multiline": "warn",
"prefer-const": "warn",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
{
"vars": "all",
"varsIgnorePattern": "^_",
"args": "after-used",
"argsIgnorePattern": "^_"
}
],
"no-unused-vars": "off",
"unused-imports/no-unused-imports": "error",
"unused-imports/no-unused-vars": "off"
},
"settings": {
"react": {
"version": "detect"
}
},
"env": {
"browser": true,
"node": true,
"jasmine": true,
"jest": true,
"es2021": true
}
}
42 changes: 0 additions & 42 deletions .eslintrc.js

This file was deleted.

1 change: 1 addition & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
npx eslint . --fix
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
},
{
"command": "npm run test",
"cwd": "${workspaceFolder}/packages/iagon",
"cwd": "${workspaceFolder}/packages/leveldb",
"name": "TEST",
"request": "launch",
"type": "node-terminal",
Expand Down
Loading

0 comments on commit dc0c731

Please sign in to comment.