-
-
Notifications
You must be signed in to change notification settings - Fork 172
/
Copy path.eslintrc.js
46 lines (44 loc) · 1.47 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
/**
* @author Toru Nagashima
* See LICENSE file in root directory for full license.
*/
"use strict"
const version = require("./package.json").version
module.exports = {
extends: ["plugin:@mysticatea/es2015", "plugin:@mysticatea/+eslint-plugin"],
overrides: [
{
files: ["**/rules/*.js"],
rules: {
"@mysticatea/eslint-plugin/require-meta-docs-url": [
"error",
{
pattern: `https://github.com/mysticatea/eslint-plugin-node/blob/v${version}/docs/rules/{{name}}.md`,
},
],
},
},
{
files: ["**/rules/no-unsupported-features/*.js"],
rules: {
"@mysticatea/eslint-plugin/require-meta-docs-url": [
"error",
{
pattern: `https://github.com/mysticatea/eslint-plugin-node/blob/v${version}/docs/rules/no-unsupported-features/{{name}}.md`,
},
],
},
},
{
files: ["**/rules/prefer-global/*.js"],
rules: {
"@mysticatea/eslint-plugin/require-meta-docs-url": [
"error",
{
pattern: `https://github.com/mysticatea/eslint-plugin-node/blob/v${version}/docs/rules/prefer-global/{{name}}.md`,
},
],
},
},
],
}