-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy path.eslintrc.js
59 lines (59 loc) · 1.44 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
module.exports = {
extends: ['alloy', 'alloy/typescript'],
parserOptions: {
project: './tsconfig.eslint.json',
},
rules: {
'no-promise-executor-return': 'off',
'spaced-comment': ['error', 'always', { markers: ['/'] }],
'sort-imports': [
'warn',
{
ignoreCase: false,
ignoreDeclarationSort: true,
ignoreMemberSort: false,
memberSyntaxSortOrder: ['none', 'all', 'multiple', 'single'],
allowSeparatedGroups: false,
},
],
},
globals: {
BigInt: true,
globalThis: true
},
overrides: [
{
files: ['**/test/integration/test-web/cypress/**/*.{js,ts}'],
plugins: ['cypress'],
env: {
'cypress/globals': true,
},
},
// ESLint Vue from web tests
{
files: ['**/packages/client/test/integration/test-web/src/**/*.vue'],
extends: [
'plugin:vue/vue3-recommended',
// no real need to apply type checked linting rules for integration tests
'plugin:@typescript-eslint/disable-type-checked',
],
parserOptions: {
ecmaVersion: 2020,
parser: '@typescript-eslint/parser',
extraFileExtensions: ['.vue'],
},
rules: {
'vue/html-indent': ['warn', 2],
},
},
// Jakefiles
{
files: ['packages/crypto/etc/jakefile.ts', 'etc/jakefile.ts'],
globals: {
desc: true,
task: true,
namespace: true,
},
},
],
}