Downgraded eslint, fixes lint stuff

This commit is contained in:
Viktor Sarström 2021-10-15 15:10:46 +02:00
parent d451cf13af
commit a1b3b52629
6 changed files with 457 additions and 174 deletions

View File

@ -1,5 +1,4 @@
{
"parser": "@babel/eslint-parser",
"extends": [
"@react-native-community",
"plugin:react-native-a11y/all",

View File

@ -14,9 +14,6 @@ jest.mock('@skolplattformen/hooks')
let sendSMS
let user = { personalNumber: '201701092395' }
const setup = (customProps = {}) => {
sendSMS = jest.fn()

View File

@ -11,6 +11,6 @@ module.exports = {
),
},
transformIgnorePatterns: [
"node_modules/(?!(@react-native|react-native|react-native-markdown-display|react-native-webview|react-native-calendar-events|react-native-simple-toast|react-native-modal-datetime-picker|@react-native-community/datetimepicker)/)"
]
'node_modules/(?!(@react-native|react-native|react-native-markdown-display|react-native-webview|react-native-calendar-events|react-native-simple-toast|react-native-modal-datetime-picker|@react-native-community/datetimepicker)/)',
],
}

View File

@ -24,8 +24,8 @@ jest.mock('react-native-reanimated', () => {
jest.mock('@react-navigation/native')
jest.mock('@react-navigation/core')
jest.mock('react-native-localize')
jest.mock("react-native/Libraries/Linking/Linking", () => ({
openURL: jest.fn(() => Promise.resolve("mockResolve")),
jest.mock('react-native/Libraries/Linking/Linking', () => ({
openURL: jest.fn(() => Promise.resolve('mockResolve')),
}))
jest.mock('react-native', () => {
const RN = jest.requireActual('react-native')

View File

@ -75,7 +75,7 @@
"@babel/eslint-parser": "^7.15.8",
"@nrwl/cli": "12.9.0",
"@nrwl/detox": "12.9.0",
"@nrwl/eslint-plugin-nx": "12.9.0",
"@nrwl/eslint-plugin-nx": "^12.10.0",
"@nrwl/jest": "12.9.0",
"@nrwl/linter": "12.9.0",
"@nrwl/react": "12.9.0",
@ -104,13 +104,13 @@
"@types/react-dom": "17.0.3",
"@types/react-native": "0.64.13",
"@types/tough-cookie": "^4.0.0",
"@typescript-eslint/eslint-plugin": "~4.28.3",
"@typescript-eslint/parser": "~4.28.3",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@ui-kitten/metro-config": "^5.1.1",
"babel-jest": "^27.2.5",
"detox": "18.20.2",
"eslint": "^8.0.1",
"eslint-config-prettier": "8.1.0",
"eslint": "7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.23.1",

609
yarn.lock

File diff suppressed because it is too large Load Diff