forked from benrr101/node-taglib-sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.js
More file actions
128 lines (128 loc) · 3.56 KB
/
.eslintrc.js
File metadata and controls
128 lines (128 loc) · 3.56 KB
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
module.exports = {
env: {
browser: true,
es6: true,
},
extends: ["plugin:@typescript-eslint/recommended"],
parser: "@typescript-eslint/parser",
parserOptions: {
project: "tsconfig.json",
sourceType: "module",
},
plugins: ["eslint-plugin-import", "eslint-plugin-jsdoc", "eslint-plugin-prefer-arrow", "@typescript-eslint"],
rules: {
"@typescript-eslint/adjacent-overload-signatures": "error",
"@typescript-eslint/array-type": [
"error",
{
default: "array-simple",
},
],
"@typescript-eslint/ban-types": [
"error",
{
types: {
Object: {
message: "Avoid using the `Object` type. Did you mean `object`?",
},
Function: {
message: "Avoid using the `Function` type. Prefer a specific function type.",
},
Boolean: {
message: "Avoid using the `Boolean` type. Did you mean `boolean`?",
},
Number: {
message: "Avoid using the `Number` type. Did you mean `number`?",
},
String: {
message: "Avoid using the `String` type. Did you mean `string`?",
},
Symbol: {
message: "Avoid using the `Symbol` type. Did you mean `symbol`?",
},
},
},
],
"@typescript-eslint/dot-notation": "error",
"@typescript-eslint/explicit-function-return-type": [
"error",
{
allowExpressions: true,
},
],
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/naming-convention": [
"warn",
{ selector: "default", format: ["camelCase"] },
{ selector: "typeLike", format: ["PascalCase"] },
{ selector: "property", modifiers: ["private"], format: ["camelCase"], leadingUnderscore: "require" },
{ selector: "property", modifiers: ["static", "readonly"], format: ["UPPER_CASE"] },
{ selector: "property", modifiers: ["private", "static", "readonly"], format: ["UPPER_CASE"], leadingUnderscore: "forbid" },
{ selector: "enumMember", format: ["PascalCase"] },
],
"@typescript-eslint/no-inferrable-types": 0,
"@typescript-eslint/no-misused-new": "error",
"@typescript-eslint/no-namespace": "error",
"@typescript-eslint/no-parameter-properties": "warn",
"@typescript-eslint/no-shadow": "error",
"@typescript-eslint/prefer-namespace-keyword": "error",
"@typescript-eslint/restrict-template-expressions": 0,
"@typescript-eslint/triple-slash-reference": [
"off",
{
path: "always",
types: "prefer-import",
lib: "always",
},
],
"@typescript-eslint/unbound-method": [
"error",
{
ignoreStatic: true,
},
],
"@typescript-eslint/unified-signatures": "error",
"constructor-super": "error",
"dot-notation": [
"error",
{
allowPattern: "^_.+",
},
],
eqeqeq: "error",
"guard-for-in": "error",
"jsdoc/check-alignment": "error",
"max-len": [
"warn",
{
code: 120,
},
],
"new-parens": "error",
"no-caller": "error",
"no-cond-assign": "error",
"no-console": "error",
"no-debugger": "error",
"no-empty": "error",
"no-empty-function": "error",
"no-eval": "error",
"no-invalid-this": "error",
"no-multiple-empty-lines": "warn",
"no-new-wrappers": "error",
"no-shadow": "off", // Required for @typescript-eslint/no-shadow to work properly
"no-throw-literal": "error",
"no-trailing-spaces": "error",
"no-undef-init": "error",
"no-unsafe-finally": "error",
"no-unused-expressions": "error",
"no-unused-labels": "error",
"no-var": "error",
"one-var": ["error", "never"],
"prefer-arrow/prefer-arrow-functions": "error",
"prefer-const": "error",
radix: "error",
"spaced-comment": ["error", "always"],
"use-isnan": "error",
"valid-typeof": "error",
},
};