-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
145 lines (144 loc) · 3.42 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/*
* SPDX-FileCopyrightText: 2022 Zextras <https://www.zextras.com>
*
* SPDX-License-Identifier: AGPL-3.0-only
*/
module.exports = {
extends: ['./node_modules/@zextras/carbonio-ui-configs/rules/eslint.js'],
plugins: ['notice', 'no-autofix'],
overrides: [
{
// enable eslint-plugin-testing-library rules or preset only for test files
files: ['**/__tests__/**/*.[jt]s?(x)', '**/?(*.)+(spec|test).[jt]s?(x)'],
extends: ['plugin:jest-dom/recommended', 'plugin:testing-library/react'],
rules: {
'testing-library/no-node-access': 'off',
'jest-dom/prefer-enabled-disabled': 'off',
'no-autofix/jest-dom/prefer-enabled-disabled': 'warn'
}
},
{
files: ['src/**/types/graphql/resolvers-types.ts'],
rules: {
'@typescript-eslint/no-unused-vars': [
'warn',
{
varsIgnorePattern: 'RefType'
}
],
'unused-imports/no-unused-vars': ['warn', { varsIgnorePattern: 'RefType' }]
}
},
{
// disable check for license header on graphql files
files: ['*.[jt]s?(x)'],
processor: '@graphql-eslint/graphql'
},
{
files: ['*.graphql'],
rules: {
'prettier/prettier': 'error',
'notice/notice': [
'error',
{
templateFile: './notice.template.graphql'
}
],
'spaced-comment': ['off']
}
},
{
files: ['**/graphql/*/**/*.graphql'],
extends: ['plugin:@graphql-eslint/operations-recommended'],
rules: {
'@graphql-eslint/naming-convention': [
'error',
{
VariableDefinition: 'snake_case'
}
],
'@graphql-eslint/no-unused-fragments': 'off',
'@graphql-eslint/known-directives': ['error', { ignoreClientDirectives: ['client'] }]
}
},
{
files: ['*schema.graphql'],
extends: ['plugin:@graphql-eslint/schema-recommended'],
rules: {
'@graphql-eslint/naming-convention': [
'error',
{
'FieldDefinition[parent.name.value=Query]': {
forbiddenPrefixes: ['query']
}
}
],
'@graphql-eslint/known-directives': ['error', { ignoreClientDirectives: ['client'] }]
}
},
{
files: ['schema.graphql'],
rules: {
'@graphql-eslint/naming-convention': 'off',
'@graphql-eslint/require-description': 'off',
'@graphql-eslint/no-typename-prefix': 'off',
'@graphql-eslint/strict-id-in-types': 'off',
'@graphql-eslint/description-style': 'off'
}
},
{
files: [
'**/mocks/**/*.[jt]s?(x)',
'**/types/**/*.[jt]s?(x)',
'**/tests/**/*.[jt]s?(x)',
'**/jest-*.ts?(x)',
'**/test*.ts?(x)',
'**/__mocks__/**/*',
'codegen.ts'
],
rules: {
'import/no-extraneous-dependencies': 'off'
}
},
{
files: 'src/carbonio-files-ui-common/**/*.[jt]s?(x)',
rules: {
'no-restricted-imports': [
'error',
{
paths: [
{
name: '@zextras/carbonio-shell-ui',
message: 'Do not import shell in common files'
}
]
}
]
}
}
],
parserOptions: {
schema: [
'src/carbonio-files-ui-common/graphql/schema.graphql',
'src/carbonio-files-ui-common/graphql/client-schema.graphql'
],
operations: 'src/carbonio-files-ui-common/graphql/**/*.graphql'
},
rules: {
'no-param-reassign': [
'error',
{
ignorePropertyModificationsFor: ['accumulator', 'mockedNode']
}
],
'notice/notice': [
'error',
{
templateFile: './notice.template.js'
}
],
'sonarjs/cognitive-complexity': 'warn',
'sonarjs/no-duplicate-string': 'off'
},
ignorePatterns: ['notice.template.*']
};