mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
9 lines
310 B
JavaScript
9 lines
310 B
JavaScript
|
/** @type { import('eslint').Linter.Config } */
|
||
|
module.exports = {
|
||
|
extends: '../../.eslintrc.js',
|
||
|
rules: {
|
||
|
'@typescript-eslint/no-use-before-define': 'off', // TSCONVERSION
|
||
|
camelcase: ['error', { allow: ['__export_format', '__export_date', '__export_source', '_postman_variable_scope'] }],
|
||
|
},
|
||
|
};
|