-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
44 lines (43 loc) · 1.12 KB
/
.eslintrc.cjs
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
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution')
/** @type {import("eslint").Linter.Config} */
module.exports = {
root: true,
extends: [
'plugin:vue/vue3-recommended',
'eslint:recommended',
'@vue/eslint-config-typescript',
'@vue/eslint-config-prettier',
'plugin:vuejs-accessibility/recommended',
],
plugins: ['vuejs-accessibility'],
rules: {
'no-console': 'warn',
'no-debugger': 'warn',
'vue/component-tags-order': [
'error',
{ order: ['script', 'template', 'style'] },
],
'vue/block-lang': ['error', { script: { lang: 'ts' } }],
'prefer-template': 'warn',
'no-undef': 'off',
'vue/component-api-style': ['error', ['script-setup']],
'vuejs-accessibility/label-has-for': [
'error',
{
controlComponents: ['CelebrationCheckbox'],
allowChildren: true,
},
],
},
overrides: [
{
files: ['cypress/e2e/**/*.{cy,spec}.{js,ts,jsx,tsx}'],
extends: ['plugin:cypress/recommended'],
},
],
parserOptions: {
ecmaVersion: 'latest',
warnOnUnsupportedTypeScriptVersion: false,
},
}