Skip to content

Commit

Permalink
Merge branch 'fix-change-equal-digit-function' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
klawdyo committed Sep 11, 2024
2 parents 38b0152 f2126eb commit 6165d77
Show file tree
Hide file tree
Showing 10 changed files with 5,666 additions and 4,318 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 56,7 @@ module.exports = {
'no-unused-vars': 'off',
'no-use-before-define': ['warn', { functions: false, classes: false }],
'prefer-destructuring': 'off',
semi: ['error', 'never'],
semi: ['error', 'always'],
'sort-imports': 'off',
'no-unused-expressions': 'off',
quotes: ['error', 'single', { avoidEscape: true }],
Expand Down
2 changes: 1 addition & 1 deletion .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,5 1,5 @@
module.exports = {
semi: false,
semi: true,
trailingComma: 'all',
singleQuote: true,
printWidth: 100,
Expand Down
7 changes: 1 addition & 6 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,12 1,7 @@
module.exports = {
globals: {
'ts-jest': {
tsconfig: 'tsconfig.json',
},
},
moduleFileExtensions: ['ts', 'js'],
transform: {
'^. \\.(ts|tsx)$': 'ts-jest',
'^. \\.(ts|tsx)$': ['ts-jest', { /* ts-jest config goes here in Jest */ }],
},
testRegex: '(/src/.*\\.(test|spec))\\.(jsx?|tsx?)$',
testEnvironment: 'node',
Expand Down
Loading

0 comments on commit 6165d77

Please sign in to comment.