-
Notifications
You must be signed in to change notification settings - Fork 8
/
.eslintrc.js
119 lines (102 loc) · 3.73 KB
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
const { resolve } = require('path');
const { readdirSync } = require('fs');
module.exports = {
env: { browser: true, es2021: true, jest: true },
extends: [
'airbnb-base',
'airbnb-typescript/base',
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
'plugin:jest/recommended',
],
ignorePatterns: ['.eslintrc.js'],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 12,
sourceType: 'module',
project: ['./tsconfig.eslint.json'],
},
plugins: ['@typescript-eslint', 'prettier', 'jest', 'jest-formatting'],
rules: {
/**********/
/** Style */
/**********/
// Code spacing
'prettier/prettier': 'error',
'arrow-parens': ['error', 'as-needed'],
'@typescript-eslint/indent': 'off',
'padding-line-between-statements': [
'error',
{ blankLine: 'always', prev: '*', next: 'return' },
{ blankLine: 'always', prev: '*', next: 'block-like' },
{ blankLine: 'always', prev: 'block-like', next: '*' },
],
// Import order
'sort-imports': ['error', { ignoreDeclarationSort: true }],
'import/order': [
'error',
{
groups: [
'type',
['builtin', 'external'],
['internal', 'sibling', 'parent', 'index', 'object'],
],
'newlines-between': 'always',
alphabetize: { order: 'asc', caseInsensitive: true },
},
],
/***********************************/
/* Stricter rules than airbnb-base */
/***********************************/
// No unused variables
'@typescript-eslint/no-unused-vars': ['error'],
// No reassigning function parameters
'no-param-reassign': ['error', { props: false }],
/**************************************/
/* Less strict rules than airbnb-base */
/**************************************/
// Allow `function (arg1, arg2) { void arg1; void arg2; }` to work around unused arguments
'no-void': ['error', { allowAsStatement: true }],
'curly': ['error', 'multi-line', 'consistent'],
// Allow methods that do not use `this` (notably private methods)
'class-methods-use-this': 'off',
// Allow for-of loops
'no-restricted-syntax': ['error', 'ForInStatement', 'LabeledStatement', 'WithStatement'],
// Allow properties in classes to not have emptry lines between them
'@typescript-eslint/lines-between-class-members': [
'error',
'always',
{ exceptAfterSingleLine: true },
],
// Allow using the console for logging warning, errors, etc.
'no-console': ['error', { allow: ['debug', 'info', 'warn', 'error'] }],
// Allow `this._id`, `this._name`, etc... (probably for MongoDB)
'no-underscore-dangle': ['error', { allowAfterThis: true }],
// Consistent return is enforced by typescript. Leaving this on causes double errors.
'consistent-return': 'off',
// We allow import cycles because they cause no issues for types.
'import/no-cycle': 'off',
// padding around describe and tests
"jest-formatting/padding-around-describe-blocks": 2,
"jest-formatting/padding-around-test-blocks": 2
},
overrides: [
...readdirSync(resolve(__dirname, 'packages'))
.filter(pkg => pkg.substring(0, 1) !== '.')
.map(pkg => ({
// Per-package configuration
files: [`packages/${pkg}/**/*`],
rules: {
// Allow using dependencies from both the root package.json and the package's package.json
// + only tests can import devDependencies
'import/no-extraneous-dependencies': [
'error',
{
packageDir: [__dirname, resolve(__dirname, 'packages', pkg)],
devDependencies: ['**/test/**/*.ts'],
},
],
},
})),
],
};