-
Notifications
You must be signed in to change notification settings - Fork 880
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(lint): replace unmaintained sort keys with stable sort
- Loading branch information
1 parent
6123ddc
commit a2727f6
Showing
44 changed files
with
338 additions
and
284 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,18 +1,18 @@ | ||
/** @type {import('ts-jest').JestConfigWithTsJest} */ | ||
module.exports = { | ||
presets: ['module:@react-native/babel-preset'], | ||
plugins: [ | ||
[ | ||
'module-resolver', | ||
{ | ||
root: ['./src'], | ||
extensions: ['.js', '.json'], | ||
alias: { | ||
'@': './src', | ||
}, | ||
extensions: ['.js', '.json'], | ||
root: ['./src'], | ||
}, | ||
], | ||
'inline-dotenv', | ||
'react-native-reanimated/plugin', // needs to be last | ||
], | ||
presets: ['module:@react-native/babel-preset'], | ||
}; |
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
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 |
---|---|---|
@@ -1,17 +1,17 @@ | ||
module.exports = { | ||
preset: '@testing-library/react-native', | ||
collectCoverageFrom: [ | ||
'<rootDir>/src/Components/**/*.{jsx, tsx}', | ||
'<rootDir>/src/App.{jsx, tsx}', | ||
], | ||
coverageReporters: ['html', 'text', 'text-summary', 'cobertura'], | ||
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'], | ||
preset: '@testing-library/react-native', | ||
setupFilesAfterEnv: [ | ||
'./node_modules/react-native-gesture-handler/jestSetup.js', | ||
'<rootDir>/jest.setup.js', | ||
], | ||
testMatch: ['**/*.test.ts?(x)', '**/*.test.js?(x)'], | ||
transformIgnorePatterns: [ | ||
'node_modules/(?!(jest-)?react-native|@react-native|@react-native-community|@react-navigation|ky)', | ||
], | ||
collectCoverageFrom: [ | ||
'<rootDir>/src/Components/**/*.{jsx, tsx}', | ||
'<rootDir>/src/App.{jsx, tsx}', | ||
], | ||
coverageReporters: ['html', 'text', 'text-summary', 'cobertura'], | ||
testMatch: ['**/*.test.ts?(x)', '**/*.test.js?(x)'], | ||
}; |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module.exports = { | ||
type: 'confirm', | ||
color: 'blue', | ||
message: '📘 Using typescript ?', | ||
initial: true, | ||
message: '📘 Using typescript ?', | ||
type: 'confirm', | ||
}; |
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
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
Oops, something went wrong.