mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
d7b630f17b
* add rules * run lint:fix * quick manual fix for lint errors * indent fix * add jsx prop multiline Co-authored-by: Dimitri Mitropoulos <dimitrimitropoulos@gmail.com>
13 lines
248 B
JavaScript
13 lines
248 B
JavaScript
/** @type { import('eslint').Linter.Config } */
|
|
module.exports = {
|
|
extends: '../../.eslintrc.js',
|
|
settings: {
|
|
react: {
|
|
version: 'detect',
|
|
},
|
|
},
|
|
rules: {
|
|
'@typescript-eslint/no-explicit-any': 'off', // TSCONVERSION
|
|
},
|
|
};
|