mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
13 lines
433 B
JavaScript
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),
|
|
},
|
|
};
|