mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
10 lines
268 B
JavaScript
10 lines
268 B
JavaScript
const { OFF, TYPESCRIPT_CONVERSION } = require('eslint-config-helpers');
|
|
|
|
/** @type { import('eslint').Linter.Config } */
|
|
module.exports = {
|
|
extends: '../../.eslintrc.js',
|
|
rules: {
|
|
'@typescript-eslint/no-use-before-define': OFF(TYPESCRIPT_CONVERSION),
|
|
},
|
|
};
|