2022-02-03 09:06:44 -07:00
|
|
|
module.exports = {
|
|
|
|
parser: '@typescript-eslint/parser',
|
|
|
|
parserOptions: {
|
|
|
|
project: 'tsconfig.json',
|
|
|
|
sourceType: 'module',
|
|
|
|
tsconfigRootDir: __dirname,
|
|
|
|
},
|
|
|
|
plugins: ['@typescript-eslint/eslint-plugin'],
|
2024-02-01 20:18:00 -07:00
|
|
|
extends: ['plugin:@typescript-eslint/recommended', 'plugin:prettier/recommended', 'plugin:unicorn/recommended'],
|
2022-02-03 09:06:44 -07:00
|
|
|
root: true,
|
|
|
|
env: {
|
|
|
|
node: true,
|
|
|
|
jest: true,
|
|
|
|
},
|
|
|
|
ignorePatterns: ['.eslintrc.js'],
|
|
|
|
rules: {
|
|
|
|
'@typescript-eslint/interface-name-prefix': 'off',
|
|
|
|
'@typescript-eslint/explicit-function-return-type': 'off',
|
|
|
|
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
|
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
2023-10-12 22:22:40 -07:00
|
|
|
'@typescript-eslint/no-floating-promises': 'error',
|
2024-02-01 20:18:00 -07:00
|
|
|
'unicorn/prevent-abbreviations': 'off',
|
|
|
|
'unicorn/filename-case': 'off',
|
|
|
|
'unicorn/no-null': 'off',
|
|
|
|
'unicorn/prefer-top-level-await': 'off',
|
|
|
|
'unicorn/prefer-event-target': 'off',
|
|
|
|
'unicorn/no-thenable': 'off',
|
2023-11-28 13:09:20 -07:00
|
|
|
curly: 2,
|
2022-02-03 09:06:44 -07:00
|
|
|
'prettier/prettier': 0,
|
|
|
|
},
|
|
|
|
};
|