mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
87dca4e837
This broke with the following error: ``` ESLint: 7.28.0 ESLint couldn't determine the plugin "@typescript-eslint" uniquely. - /home/macobo/backups/2/projects/posthog/plugin-server/node_modules/@typescript-eslint/eslint-plugin/dist/index.js (loaded in "../../../.eslintrc.js") - /home/macobo/backups/2/projects/posthog/node_modules/@typescript-eslint/eslint-plugin/dist/index.js (loaded in "../../../../.eslintrc.js") Please remove the "plugins" setting from either config or remove either plugin installation. If you still can't figure out the problem, please stop by https://eslint.org/chat/help to chat with the team. ``` Relate github issue: https://github.com/eslint/eslint/issues/13385
36 lines
1.3 KiB
JavaScript
36 lines
1.3 KiB
JavaScript
module.exports = {
|
|
parser: '@typescript-eslint/parser',
|
|
parserOptions: {
|
|
sourceType: 'module',
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./tsconfig.eslint.json'],
|
|
},
|
|
plugins: ['@typescript-eslint', 'simple-import-sort'],
|
|
extends: ['plugin:@typescript-eslint/recommended', 'prettier'],
|
|
ignorePatterns: ['bin', 'dist', 'node_modules'],
|
|
rules: {
|
|
'simple-import-sort/imports': 'error',
|
|
'simple-import-sort/exports': 'error',
|
|
'@typescript-eslint/no-unused-vars': 'off',
|
|
'@typescript-eslint/explicit-function-return-type': 'off',
|
|
'@typescript-eslint/no-non-null-assertion': 'off',
|
|
'@typescript-eslint/no-var-requires': 'off',
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'require-await': 'off',
|
|
'@typescript-eslint/require-await': 'error',
|
|
'@typescript-eslint/await-thenable': 'error',
|
|
'@typescript-eslint/no-floating-promises': 'error',
|
|
'@typescript-eslint/no-misused-promises': ['error', { checksVoidReturn: false }],
|
|
curly: 'error',
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ['**/__tests__/**/*.ts', 'src/celery/**/*.ts'],
|
|
rules: {
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
},
|
|
},
|
|
],
|
|
root: true,
|
|
}
|