mirror of
https://github.com/zhigang1992/react-native-chat-ui.git
synced 2026-04-29 12:45:41 +08:00
20 lines
430 B
JavaScript
20 lines
430 B
JavaScript
module.exports = {
|
|
env: {
|
|
jest: true,
|
|
},
|
|
extends: [
|
|
'@react-native-community',
|
|
'plugin:jest/all',
|
|
'plugin:prettier/recommended',
|
|
],
|
|
plugins: ['simple-import-sort', 'jest'],
|
|
root: true,
|
|
rules: {
|
|
'import/order': 'off',
|
|
'jest/no-hooks': ['error', { allow: ['beforeEach'] }],
|
|
'simple-import-sort/exports': 'error',
|
|
'simple-import-sort/imports': 'error',
|
|
'sort-imports': 'off',
|
|
},
|
|
}
|