-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
.eslintrc.js
127 lines (117 loc) · 3.22 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
/* eslint-env node */
module.exports = {
root: true,
env: {
browser: true,
greasemonkey: true,
es2021: true,
},
parserOptions: {
ecmaVersion: "latest",
},
extends: [
"eslint:recommended",
"plugin:@cspell/recommended",
"plugin:security/recommended-legacy",
// Display Prettier errors as ESLint errors.
// Enables eslint-plugin-prettier and eslint-config-prettier.
"plugin:prettier/recommended",
//! Prettier should always be the last configuration in the extends array.
],
rules: {
"no-unused-vars": ["error", { argsIgnorePattern: "^_" }], // Ignore variables whose names begin with an underscore.
},
overrides: [
/*
* Userscript files.
*/
{
files: ["*.user.js"],
extends: ["plugin:userscripts/recommended"],
rules: {
"userscripts/better-use-match": "off", // Disable this warning for now.
},
settings: {
userscriptVersions: {
tampermonkey: ">=4",
violentmonkey: ">=2",
greasemonkey: "*",
},
},
},
/*
* JSON files.
*/
{
files: ["*.json"],
extends: [
"plugin:json/recommended-with-comments",
// Display Prettier errors as ESLint errors.
// Enables eslint-plugin-prettier and eslint-config-prettier.
"plugin:prettier/recommended",
//! Prettier should always be the last configuration in the extends array.
],
},
/*
* `package.json` file.
* This needs it's own configuration, because it doesn't work together with `plugin:json`.
* See https://github.com/kellyselden/eslint-plugin-json-files/issues/40
* Must be after `*.json`.
*/
{
files: ["package.json"],
plugins: ["json-files"],
extends: [
// Display Prettier errors as ESLint errors.
// Enables eslint-plugin-prettier and eslint-config-prettier.
"plugin:prettier/recommended",
//! Prettier should always be the last configuration in the extends array.
],
rules: {
"json-files/ensure-repository-directory": "error",
"json-files/no-branch-in-dependencies": "error",
"json-files/require-engines": "error",
"json-files/require-license": "error",
"json-files/require-unique-dependency-names": "error",
"json-files/sort-package-json": "error",
},
},
/*
* Markdown files.
*/
{
files: ["*.md"],
parser: "eslint-plugin-markdownlint/parser",
extends: [
"plugin:markdownlint/recommended",
// Display Prettier errors as ESLint errors.
// Enables eslint-plugin-prettier and eslint-config-prettier.
"plugin:prettier/recommended",
//! Prettier should always be the last configuration in the extends array.
],
rules: {
"markdownlint/md007": [
"error",
{
indent: 4,
},
], // For compatibility with Prettier. See https://github.com/DavidAnson/markdownlint/blob/main/doc/Prettier.md
"markdownlint/md030": [
"error",
{
ol_multi: 3,
ol_single: 3,
ul_multi: 3,
ul_single: 3,
},
], // For compatibility with Prettier. See https://github.com/DavidAnson/markdownlint/blob/main/doc/Prettier.md
"markdownlint/md013": "off", // Disable line length.
"markdownlint/md033": [
"error",
{ allowed_elements: ["br", "sup", "kbd"] },
],
"prettier/prettier": ["error", { parser: "markdown" }],
},
},
],
};