insomnia/packages/openapi-2-kong/.eslintrc.js
2021-08-12 18:01:54 -04:00

13 lines
433 B
JavaScript

const { OFF, TYPESCRIPT_CONVERSION } = require('eslint-config-helpers');
/** @type { import('eslint').Linter.Config } */
module.exports = {
extends: '../../.eslintrc.js',
rules: {
camelcase: 'off',
'@typescript-eslint/no-explicit-any': OFF(TYPESCRIPT_CONVERSION),
'@typescript-eslint/no-empty-interface': OFF(TYPESCRIPT_CONVERSION),
'@typescript-eslint/no-use-before-define': OFF(TYPESCRIPT_CONVERSION),
},
};