insomnia/packages/insomnia-importers/.eslintrc.js

9 lines
310 B
JavaScript
Raw Normal View History

/** @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'] }],
},
};