forked from eslint-community/eslint-plugin-n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
102 lines (99 loc) · 3.21 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
/**
* @author Toru Nagashima
* @deprecated
* @description the file is no longer used, and will be removed in the future.
* See LICENSE file in root directory for full license.
*/
"use strict"
// the config does not support eslint v8 yet, just replaced it with a simple config,
// to make the ci passing.
module.exports = {
reportUnusedDisableDirectives: true,
extends: [
"eslint:recommended",
"plugin:n/recommended",
"plugin:eslint-plugin/recommended",
"prettier",
],
env: {
mocha: true,
},
rules: {
"eslint-plugin/require-meta-docs-description": "error",
},
overrides: [
{
// these messageIds were used outside
files: ["lib/rules/prefer-global/*.js"],
rules: {
"eslint-plugin/no-unused-message-ids": 0,
},
},
],
}
// const version = require("./package.json").version
// module.exports = {
// extends: ["plugin:@mysticatea/es2015", "plugin:@mysticatea/+eslint-plugin"],
// rules: {
// "@mysticatea/eslint-plugin/test-case-property-ordering": [
// "error",
// [
// "filename",
// "code",
// "output",
// "options",
// "parser",
// "parserOptions",
// "globals",
// "env",
// "errors",
// ],
// ],
// },
// 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`,
// },
// ],
// },
// },
// {
// files: ["**/rules/prefer-promises/*.js"],
// rules: {
// "@mysticatea/eslint-plugin/require-meta-docs-url": [
// "error",
// {
// pattern: `https://github.com/mysticatea/eslint-plugin-node/blob/v${version}/docs/rules/prefer-promises/{{name}}.md`,
// },
// ],
// },
// },
// ],
// }