-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheslint.config.mjs
67 lines (66 loc) · 2.02 KB
/
eslint.config.mjs
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
import typescriptEslintPlugin from '@typescript-eslint/eslint-plugin';
import typescriptEslintParser from '@typescript-eslint/parser';
import importPlugin from 'eslint-plugin-import';
import prettier from 'eslint-plugin-prettier';
import { resolve } from 'path';
export default [
{
ignores: ['node_modules/**', './eslint.config.js'],
},
{
files: ['**/*.{js,ts}'],
languageOptions: {
ecmaVersion: 2020,
sourceType: 'module',
parser: typescriptEslintParser,
parserOptions: {
project: resolve('./tsconfig.json'),
},
},
plugins: {
'@typescript-eslint': typescriptEslintPlugin,
import: importPlugin,
prettier,
},
rules: {
...typescriptEslintPlugin.configs.recommended.rules,
...prettier.configs.recommended.rules,
'prettier/prettier': [
'error',
{
endOfLine: 'auto',
},
],
'import/order': [
'error',
{
groups: [
['builtin', 'external'],
'internal',
['parent', 'sibling', 'index'],
],
'newlines-between': 'always',
},
],
'padding-line-between-statements': [
'error',
{ blankLine: 'always', prev: '*', next: 'return' },
{ blankLine: 'always', prev: 'directive', next: '*' },
{ blankLine: 'any', prev: 'directive', next: 'directive' },
{ blankLine: 'always', prev: 'block', next: '*' },
{ blankLine: 'always', prev: '*', next: 'block' },
{ blankLine: 'always', prev: 'block-like', next: '*' },
{ blankLine: 'always', prev: '*', next: 'block-like' },
{ blankLine: 'always', prev: '*', next: 'function' },
{ blankLine: 'always', prev: 'function', next: '*' },
{ blankLine: 'always', prev: '*', next: ['const', 'let', 'var'] },
{
blankLine: 'any',
prev: ['const', 'let', 'var'],
next: ['const', 'let', 'var'],
},
],
'@typescript-eslint/no-explicit-any': 'off',
},
},
];