-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
45 lines (45 loc) · 1.25 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
module.exports = {
root: true,
env: {
node: true,
jest: true,
},
parser: 'vue-eslint-parser',
parserOptions: {
tsconfigRootDir: __dirname,
parser: '@typescript-eslint/parser',
project: ['./tsconfig.json'],
sourceType: 'module',
extraFileExtensions: ['.vue', '.d.ts'],
},
plugins: ['@typescript-eslint'],
extends: [
'standard-with-typescript',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'eslint:recommended',
'plugin:vue/vue3-recommended',
'prettier',
],
rules: {
'no-undef': 'off',
'no-unused-vars': 1,
'comma-dangle': ['error', 'always-multiline'],
'@typescript-eslint/promise-function-async': 'off',
'@typescript-eslint/strict-boolean-expressions': 'off',
'@typescript-eslint/no-unused-vars': 1,
'vue/require-default-prop': 1,
'space-before-function-paren': ['error', 'never'],
},
overrides: [
{
files: ['./**/*.ts', 'stories/**/*.ts'],
rules: {
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-unnecessary-type-assertion': 'off',
'@typescript-eslint/no-explicit-any': 'off',
},
},
],
ignorePatterns: ['.eslintrc.js', 'tailwind.config.js'],
}