2021-07-27 21:52:49 +02:00
|
|
|
module.exports = {
|
|
|
|
root: true,
|
|
|
|
parser: '@typescript-eslint/parser',
|
|
|
|
parserOptions: {
|
2022-12-25 18:48:18 +01:00
|
|
|
project: './tsconfig.json',
|
2021-07-27 21:52:49 +02:00
|
|
|
},
|
2022-12-25 18:48:18 +01:00
|
|
|
plugins: ['@typescript-eslint'],
|
2021-07-27 21:52:49 +02:00
|
|
|
extends: [
|
|
|
|
'eslint:recommended',
|
|
|
|
'plugin:@typescript-eslint/recommended',
|
2022-12-25 18:48:18 +01:00
|
|
|
'@verdaccio/eslint-config',
|
2021-07-27 21:52:49 +02:00
|
|
|
],
|
|
|
|
rules: {
|
2022-12-25 18:48:18 +01:00
|
|
|
'@typescript-eslint/no-use-before-define': 'warn',
|
|
|
|
'max-len': 'off',
|
|
|
|
'react/jsx-one-expression-per-line': 'off',
|
|
|
|
'react/prop-types': 'off',
|
|
|
|
'react/require-default-props': 'off',
|
|
|
|
},
|
2021-09-01 19:15:15 +02:00
|
|
|
};
|