Skip to content

Commit 4e8da7c

Browse files
authoredMar 13, 2025··
chore: remove obsolete scripts and devDependencies (#6565)
### Description This PR removes obsolete scripts and `devDependencies`. I've deleted jest related things since we don't have unit tests here and probably won't. And same for detox, we'll probably try maestro instead.
1 parent 8a2d473 commit 4e8da7c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+83
-3552
lines changed
 

‎.eslintrc.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
11
module.exports = {
22
extends: ['@valora/eslint-config-typescript'],
3-
plugins: ['@jambit/typed-redux-saga', 'jsx-expressions'],
3+
plugins: ['jsx-expressions'],
44
parserOptions: {
5-
project: './tsconfig.eslint.json',
5+
project: './tsconfig.json',
66
},
77
ignorePatterns: ['**/__mocks__/**', '**/lcov-report/**', 'vendor', '.bundle'],
88
rules: {
99
// Maybe move it to @valora/eslint-config-typescript?
1010
'jest/valid-title': ['error', { ignoreTypeOfDescribeName: true }],
1111
'no-console': ['error', { allow: [''] }],
12-
'@jambit/typed-redux-saga/delegate-effects': 'error',
1312
},
1413
overrides: [
1514
{
1615
files: ['./**/*.ts', './**/*.tsx'],
1716
excludedFiles: ['./**/*.test.ts', './**/*.test.tsx'],
1817
rules: {
19-
'@jambit/typed-redux-saga/use-typed-effects': 'error',
2018
'jsx-expressions/strict-logical-expressions': 'error',
2119
},
2220
},

‎.github/scripts/automergeCrowdinPr.js

-130
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.