| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- module.exports = {
- root: true, // https://eslint.org/docs/user-guide/configuring/configuration-files#cascading-and-hierarchy
- extends: [
- 'weseek',
- 'weseek/typescript',
- 'plugin:jest/recommended',
- ],
- env: {
- 'jest/globals': true,
- },
- globals: {
- },
- plugins: [
- 'jest',
- 'regex',
- ],
- rules: {
- 'import/prefer-default-export': 'off',
- '@typescript-eslint/no-explicit-any': 'off',
- indent: [
- 'error',
- 2,
- {
- SwitchCase: 1,
- ArrayExpression: 'first',
- FunctionDeclaration: { body: 1, parameters: 2 },
- FunctionExpression: { body: 1, parameters: 2 },
- },
- ],
- 'jest/no-standalone-expect': [
- 'error',
- { additionalTestBlockFunctions: ['each.test'] },
- ],
- 'regex/invalid': ['error', [
- {
- regex: '\\?\\<\\!',
- message: 'Do not use any negative lookbehind',
- }, {
- regex: '\\?\\<\\=',
- message: 'Do not use any Positive lookbehind',
- },
- ]],
- },
- };
|