forked from WordPress/openverse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
215 lines (213 loc) · 6.11 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
// WebStorm fix for `~` alias not working:
// https://intellij-support.jetbrains.com/hc/en-us/community/posts/115000771544-ESLint-does-not-work-with-webpack-import-resolver-in-2017-3
process.chdir(__dirname)
const i18nDestructureRules = ["t", "tc", "te", "td", "d", "n"].map(
(methodName) => ({
selector: `VariableDeclarator[id.type="ObjectPattern"]:has(Property[key.name="${methodName}"])[init.callee.name="useI18n"]`,
message: `Do not destructure ${methodName} from the i18n object as its methods internally depend on "this". Instead, use it directly (e.g., "i18n.${methodName}"). If you need an independent reference to the function then bind it or wrap it in a closure.`,
})
)
module.exports = {
root: true,
env: {
browser: true,
node: true,
},
parserOptions: {
parser: "@typescript-eslint/parser",
},
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:vue/recommended",
"plugin:prettier/recommended",
"plugin:vuejs-accessibility/recommended",
"plugin:@intlify/vue-i18n/recommended",
"plugin:import/recommended",
"plugin:eslint-comments/recommended",
],
plugins: [
"@typescript-eslint",
"eslint-plugin-tsdoc",
"vue",
"vuejs-accessibility",
"unicorn",
],
rules: {
semi: [2, "never"],
"no-console": "off",
"prettier/prettier": "off",
"vue/max-attributes-per-line": "off",
"vue/require-prop-types": "off",
"vue/require-default-prop": "off",
"vue/html-closing-bracket-newline": "off",
"vue/html-indent": "off",
"vue/singleline-html-element-content-newline": "off",
"vue/block-lang": [
"error",
{
// This confusing naming prevents the use of 'lang' directives
// entirely on Vue SFC style blocks.
style: { allowNoLang: true },
},
],
"vue/component-name-in-template-casing": [
"error",
"PascalCase",
{ registeredComponentsOnly: false, ignores: ["i18n"] },
],
"vue/html-self-closing": [
"error",
{
html: {
void: "always",
normal: "always",
component: "always",
},
svg: "always",
math: "always",
},
],
"vuejs-accessibility/aria-role": "error",
"vuejs-accessibility/label-has-for": [
"error",
{ required: { some: ["nesting", "id"] } },
],
/**
* Custom rule to disallow raw `<a></a>` tag usage.
* Learn more about vue-eslint-parser's AST syntax:
* https://github.com/vuejs/vue-eslint-parser/blob/master/docs/ast.md
*/
"vue/no-restricted-syntax": [
"error",
{
selector: 'VElement[name="a"]',
message: "Use the <VLink> component instead of a raw <a> tag.",
},
{
selector: 'VElement[name="nuxtlink"]',
message: "Use the <VLink> component instead of <NuxtLink>.",
},
{
selector: 'VElement[name="routerlink"]',
message: "Use the <VLink> component instead of <RouterLink>.",
},
],
"no-restricted-syntax": ["error", ...i18nDestructureRules],
"unicorn/filename-case": ["error", { case: "kebabCase" }],
"@typescript-eslint/no-var-requires": ["off"],
"import/no-unresolved": [
"error",
{
// https://github.com/nuxt-community/svg-module/issues/4
ignore: [".svg"],
},
],
"import/newline-after-import": ["error"],
"import/order": [
"error",
{
"newlines-between": "always-and-inside-groups",
groups: [
"builtin",
"external",
"internal",
"parent",
"sibling",
"index",
"object",
"type",
],
pathGroups: [
{
// Treat vue and composition-api as "builtin"
pattern: "(vue|@nuxtjs/composition-api)",
group: "builtin",
position: "before",
},
{
// Move assets to the very end of the imports list
pattern: "~/assets/**",
group: "type",
position: "after",
},
{
// Treat components as their own group and move to the end of the internal imports list
pattern: "~/components/**",
group: "internal",
position: "after",
},
/**
* These next two must come after any more specific matchers
* as the plugin uses the patterns in order and does not sort
* multiple-matches by specificity, it just takes the _first_
* pattern that matches and applies that group to the import.
*/
{
// Document webpack alias
pattern: "~/**",
group: "internal",
position: "before",
},
{
// Document webpack alias
pattern: "~~/**",
group: "external",
position: "after",
},
],
},
],
"import/extensions": ["error", "always", { js: "never", ts: "never" }],
"@intlify/vue-i18n/no-raw-text": [
"error",
{
ignoreText: [
// Brand names that should not be translated
"Common Crawl",
"Creative Commons",
"Europeana",
"Flickr",
"Openverse",
"WordPress",
"openverse@wordpress.org",
],
},
],
},
overrides: [
{
files: ["*.ts"],
rules: {
"tsdoc/syntax": "error",
},
},
{
files: ["*.spec.js"],
rules: {
"@intlify/vue-i18n/no-raw-text": ["off"],
},
},
],
settings: {
"vue-i18n": {
localeDir: "./frontend/src/locales/*.{json}",
messageSyntaxVersion: "^8.24.3",
},
"import/resolver": {
"eslint-import-resolver-custom-alias": {
alias: {
"~": "./frontend/src",
"~~": "./frontend",
},
/**
* SVG imports are excluded for the import/no-unresolved
* rule above due to lack of support for `?inline` suffix
*
* Therefore, there's no need to configure them here
*/
extensions: [".js", ".ts", ".vue", ".png"],
},
},
},
}