insomnia/packages/insomnia-url/.eslintrc.js

10 lines
268 B
JavaScript
Raw Normal View History

2021-08-12 22:01:54 +00:00
const { OFF, TYPESCRIPT_CONVERSION } = require('eslint-config-helpers');
/** @type { import('eslint').Linter.Config } */
module.exports = {
extends: '../../.eslintrc.js',
rules: {
2021-08-12 22:01:54 +00:00
'@typescript-eslint/no-use-before-define': OFF(TYPESCRIPT_CONVERSION),
},
};