-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.js
45 lines (43 loc) · 1.38 KB
/
eslint.config.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
import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';
import stylisticTs from '@stylistic/eslint-plugin-ts';
import eslintConfigPrettier from 'eslint-config-prettier';
import globals from 'globals';
export default tseslint.config(
{
languageOptions: {
globals: globals.node,
},
},
eslint.configs.recommended,
...tseslint.configs.recommended,
eslintConfigPrettier,
{
plugins: {
'@stylistic/ts': stylisticTs,
},
rules: {
'@stylistic/ts/indent': ['error', 4],
'quotes': ['error', 'single'],
'no-lone-blocks': ['error'],
'object-curly-spacing': ['error', 'always'],
'semi': ['error', 'always'],
'no-multi-spaces': 'error',
'key-spacing': ['error', {
'beforeColon': false,
'afterColon': true,
}],
'space-infix-ops': 'error',
'object-property-newline': ['error', { 'allowAllPropertiesOnSameLine': false }],
'object-curly-newline': ['error', {
'multiline': true,
'consistent': true,
}],
'comma-style': ['error', 'last'],
'@typescript-eslint/array-type': ['error', { 'default': 'array' }],
},
},
{
ignores: ['.tsimp/*', 'coverage/*', 'dist/*'],
},
);