X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.eslintrc.js;h=11fb2803e0eac7e59ca325948ae07cfc521a07a3;hb=efba7b0dfc50226a4fd7eaa5153aa98481ec9dfd;hp=a5c382c892f5547eddca28912a311ed4a445f690;hpb=3c5eaeb97b60678a0bdd4d8a26c622ea5f2616b6;p=poolifier.git diff --git a/.eslintrc.js b/.eslintrc.js index a5c382c8..11fb2803 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,39 +1,152 @@ -module.exports = { +// @ts-check +const { defineConfig } = require('eslint-define-config') + +module.exports = defineConfig({ env: { es2021: true, node: true, mocha: true }, - parser: '@typescript-eslint/parser', parserOptions: { - ecmaVersion: 12, + ecmaVersion: 2021, sourceType: 'module' }, - plugins: ['@typescript-eslint', 'prettierx'], + plugins: ['promise', 'prettierx', 'jsdoc', 'spellcheck'], extends: [ 'standard', 'eslint:recommended', - 'plugin:@typescript-eslint/recommended', - 'plugin:prettierx/standardx', - 'plugin:prettierx/@typescript-eslint' + 'plugin:import/recommended', + 'plugin:jsdoc/recommended', + 'plugin:promise/recommended', + 'plugin:prettierx/standardx' ], rules: { 'no-void': 'off', - // We have some intentionally empty functions - '@typescript-eslint/no-empty-function': 'off', + 'sort-imports': [ + 'warn', + { + ignoreMemberSort: true, + ignoreDeclarationSort: true + } + ], - '@typescript-eslint/no-inferrable-types': [ - 'error', - { ignoreProperties: true } + 'spellcheck/spell-checker': [ + 'warn', + { + skipWords: [ + 'christopher', + 'comparator', + 'cpu', + 'cpus', + 'ecma', + 'enum', + 'fibonacci', + 'inheritDoc', + 'jsdoc', + 'os', + 'poolifier', + 'readonly', + 'serializable', + 'sinon', + 'tsconfig', + 'unregister', + 'workerpool' + ], + skipIfMatch: ['^@.*', '^plugin:.*'] + } ] }, overrides: [ { - files: ['*.js'], + files: ['**/*.ts'], + parser: '@typescript-eslint/parser', + parserOptions: { + project: './tsconfig.json' + }, + plugins: ['@typescript-eslint'], + extends: [ + 'plugin:@typescript-eslint/eslint-recommended', + 'plugin:@typescript-eslint/recommended', + 'plugin:@typescript-eslint/recommended-requiring-type-checking', + 'plugin:import/typescript' + ], rules: { - '@typescript-eslint/no-var-requires': 'off' + // We have some intentionally empty functions + '@typescript-eslint/no-empty-function': 'off', + + '@typescript-eslint/no-inferrable-types': [ + 'error', + { ignoreProperties: true } + ], + + 'no-useless-constructor': 'off', + + 'jsdoc/match-description': [ + 'warn', + { + contexts: ['any'], + tags: { + param: true, + returns: true + } + } + ], + 'jsdoc/no-types': 'error', + 'jsdoc/require-jsdoc': [ + 'warn', + { + contexts: [ + 'ClassDeclaration', + 'ClassProperty:not([accessibility=/(private|protected)/])', + 'ExportNamedDeclaration:has(VariableDeclaration)', + 'FunctionExpression', + 'MethodDefinition:not([accessibility=/(private|protected)/]) > FunctionExpression', + 'TSEnumDeclaration', + 'TSInterfaceDeclaration', + 'TSMethodSignature', + // 'TSPropertySignature', + 'TSTypeAliasDeclaration' + ] + } + ], + 'jsdoc/require-param-type': 'off', + 'jsdoc/require-returns-type': 'off' } + }, + { + files: ['**/*.js'], + extends: 'plugin:node/recommended' + }, + { + files: ['tests/**/*.js'], + rules: { + 'jsdoc/require-jsdoc': 'off' + } + }, + { + files: ['tests/pools/selection-strategies/**/*.js'], + rules: { + 'node/no-missing-require': 'off' + } + }, + { + files: ['benchmarks/**/*.js'], + rules: { + 'jsdoc/require-jsdoc': 'off' + } + }, + { + files: ['examples/**/*.js'], + rules: { + 'node/no-missing-require': 'off', + 'jsdoc/require-jsdoc': 'off' + } + } + ], + settings: { + jsdoc: { + mode: 'typescript' } - ] -} + } +})