-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add possibility to configure storage and attributes for each store
- Loading branch information
1 parent
8142954
commit d67fd8d
Showing
35 changed files
with
2,583 additions
and
12,175 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import lomrayConfig from '@lomray/eslint-config-react'; | ||
// noinspection NpmUsedModulesInstalled | ||
import baseConfig from '@lomray/eslint-config'; | ||
// noinspection NpmUsedModulesInstalled | ||
import globals from 'globals'; | ||
|
||
const customFilesIgnores = { | ||
...baseConfig['filesIgnores'], | ||
files: [ | ||
...baseConfig['filesIgnores'].files, | ||
'__tests__/**/*.{ts,tsx,*.ts,*tsx}', | ||
'__mocks__/**/*.{ts,tsx,*.ts,*tsx}', | ||
'__helpers__/**/*.{ts,tsx,*.ts,*tsx}', | ||
], | ||
} | ||
|
||
export default [ | ||
...lomrayConfig.config(customFilesIgnores), | ||
{ | ||
...customFilesIgnores, | ||
languageOptions: { | ||
globals: { | ||
...globals.node, | ||
NodeJS: true, | ||
} | ||
}, | ||
rules: { | ||
'@typescript-eslint/no-explicit-any': 0, | ||
'@typescript-eslint/no-unsafe-assignment': 0, | ||
'@typescript-eslint/no-unsafe-member-access': 0, | ||
'@typescript-eslint/no-unsafe-call': 0, | ||
'@typescript-eslint/no-unsafe-return': 0, | ||
} | ||
}, | ||
]; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.