-
-
Notifications
You must be signed in to change notification settings - Fork 101
/
.eslintrc.js
41 lines (40 loc) · 1.24 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
const vitest = require('eslint-plugin-vitest');
module.exports = {
root: true,
parserOptions: { sourceType: 'module' },
env: { browser: true },
extends: [
'standard',
'plugin:prettier/recommended',
'plugin:@typescript-eslint/recommended',
],
parser: '@typescript-eslint/parser',
rules: {
'prettier/prettier': 'error',
...vitest.configs.recommended.rules,
'simple-import-sort/imports': 'error',
'simple-import-sort/exports': 'error',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/ban-ts-comment': [
2,
{
'ts-ignore': 'allow-with-description',
},
],
'no-prototype-builtins': 'off',
},
plugins: ['simple-import-sort', '@typescript-eslint', 'vitest'],
overrides: [
{
files: ['**/*.js'],
extends: ['standard', 'plugin:prettier/recommended'],
rules: {
'prettier/prettier': ['error'],
'sort-requires/sort-requires': 2,
'no-prototype-builtins': 'off',
'@typescript-eslint/no-var-requires': 'off',
},
plugins: ['sort-requires'],
},
],
};