| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- 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',
- 'import/order': [
- 'warn',
- {
- pathGroups: [
- {
- pattern: 'react',
- group: 'builtin',
- position: 'before',
- },
- {
- pattern: '^/**',
- group: 'parent',
- position: 'before',
- },
- {
- pattern: '~/**',
- group: 'parent',
- position: 'before',
- },
- {
- pattern: '*.css',
- group: 'type',
- patternOptions: { matchBase: true },
- position: 'after',
- },
- {
- pattern: '*.scss',
- group: 'type',
- patternOptions: { matchBase: true },
- position: 'after',
- },
- ],
- alphabetize: {
- order: 'asc',
- },
- pathGroupsExcludedImportTypes: ['react'],
- 'newlines-between': 'always',
- },
- ],
- '@typescript-eslint/no-explicit-any': 'off',
- '@typescript-eslint/explicit-module-boundary-types': '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',
- },
- ]],
- },
- overrides: [
- {
- // enable the rule specifically for TypeScript files
- files: ['*.ts', '*.tsx'],
- rules: {
- '@typescript-eslint/explicit-module-boundary-types': ['error'],
- },
- },
- ],
- };
|