mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
5f4c19da35
Co-authored-by: Opender Singh <opender.singh@konghq.com>
11 lines
344 B
JavaScript
11 lines
344 B
JavaScript
/** @type { import('eslint').Linter.Config } */
|
|
module.exports = {
|
|
extends: '../../.eslintrc.js',
|
|
rules: {
|
|
camelcase: 'off',
|
|
'@typescript-eslint/no-explicit-any': 'off', // TSCONVERSION
|
|
'@typescript-eslint/no-empty-interface': 'off', // TSCONVERSION
|
|
'@typescript-eslint/no-use-before-define': 'off', // TSCONVERSION
|
|
},
|
|
};
|