mirror of
https://github.com/zhigang1992/react-native-chat-ui.git
synced 2026-01-12 17:42:19 +08:00
13 lines
332 B
JavaScript
13 lines
332 B
JavaScript
module.exports = {
|
|
extends: ['@react-native-community', 'plugin:prettier/recommended'],
|
|
plugins: ['simple-import-sort'],
|
|
root: true,
|
|
rules: {
|
|
'import/order': 'off',
|
|
radix: ['error', 'as-needed'],
|
|
'simple-import-sort/exports': 'error',
|
|
'simple-import-sort/imports': 'error',
|
|
'sort-imports': 'off',
|
|
},
|
|
}
|