-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.json
134 lines (121 loc) · 4.3 KB
/
.eslintrc.json
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
{
"root": true,
"extends": [
"plugin:@cspell/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.
],
"overrides": [
/*
* Typescript files.
*/
{
"files": ["*.ts"],
"parser": "@typescript-eslint/parser",
"env": {
"node": true,
"jest": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:@typescript-eslint/strict",
"plugin:eslint-plugin/recommended",
"plugin:security/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.
],
"plugins": ["@typescript-eslint", "eslint-plugin"],
"parserOptions": {
"project": ["./tsconfig.json"]
},
"rules": {
"@typescript-eslint/array-type": ["error", { "default": "generic" }],
"@typescript-eslint/consistent-type-imports": "error",
"@typescript-eslint/explicit-function-return-type": "error",
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "_"
}
],
"eslint-plugin/consistent-output": ["error", "always"],
"eslint-plugin/meta-property-ordering": "error",
"eslint-plugin/prefer-placeholders": "error",
"eslint-plugin/prefer-replace-text": "error",
"eslint-plugin/report-message-format": [
"error",
"^[A-Z].*(`{{prop}}`).*\\.$"
], // Must start with capital, end with period and contains placeholder for "prop".
"eslint-plugin/require-meta-docs-description": "error",
"eslint-plugin/require-meta-docs-url": "off", // This is handled by `ESLintUtils.RuleCreator`.
"eslint-plugin/test-case-property-ordering": [
"error",
["name", "code", "options"]
],
"eslint-plugin/test-case-shorthand-strings": ["error", "consistent"]
}
},
/*
* 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/md013": "off", // Disable line length.
"markdownlint/md033": ["error", { "allowed_elements": ["br"] }], // Allow br-element.
"prettier/prettier": ["error", { "parser": "markdown" }]
}
}
]
}