mirror of
https://github.com/status-im/dappconnect-chat-sdk.git
synced 2025-01-12 23:14:53 +00:00
3c71b8c8f8
* update ESLint * f * f * f * c * f * f * f * f * r * u * f * f * u
14 lines
303 B
JavaScript
14 lines
303 B
JavaScript
import configs from '@status-im/eslint-config'
|
|
|
|
/** @type {import('eslint').Linter.Config[]} */
|
|
export default [
|
|
...configs,
|
|
{
|
|
files: ['./src/protos/**/*_pb.ts'],
|
|
rules: {
|
|
'eslint-comments/disable-enable-pair': 'off',
|
|
'eslint-comments/no-unlimited-disable': 'off',
|
|
},
|
|
},
|
|
]
|