Skip to content

Commit cf1ebb6

Browse files
committed
add github issue links to eslint library config
1 parent 7d72da1 commit cf1ebb6

1 file changed

Lines changed: 42 additions & 42 deletions

File tree

packages/eslint-config-custom/library.js

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -33,47 +33,47 @@ module.exports = {
3333
ignorePatterns: ["node_modules/", "dist/"],
3434
rules: {
3535
eqeqeq: ["error", "smart"],
36-
"@typescript-eslint/ban-ts-comment": "off",
37-
"@typescript-eslint/ban-types": "off",
38-
"@typescript-eslint/explicit-function-return-type": "off",
39-
"@typescript-eslint/naming-convention": "off",
40-
"@typescript-eslint/no-confusing-void-expression": "off",
41-
"no-empty-function": "off",
42-
"@typescript-eslint/no-empty-function": "off",
43-
"@typescript-eslint/no-explicit-any": "off",
44-
"@typescript-eslint/no-floating-promises": "off",
45-
"@typescript-eslint/no-misused-promises": "off",
46-
"@typescript-eslint/no-non-null-assertion": "off",
47-
"@typescript-eslint/no-redundant-type-constituents": "off",
48-
"no-shadow": "off",
49-
"@typescript-eslint/no-shadow": "off",
50-
"no-throw-literal": "off",
51-
"@typescript-eslint/no-throw-literal": "off",
52-
"@typescript-eslint/no-unnecessary-condition": "off",
53-
"@typescript-eslint/no-unnecessary-type-constraint": "off",
54-
"@typescript-eslint/no-unsafe-argument": "off",
55-
"@typescript-eslint/no-unsafe-assignment": "off",
56-
"@typescript-eslint/no-unsafe-call": "off",
57-
"@typescript-eslint/no-unsafe-member-access": "off",
58-
"@typescript-eslint/no-unsafe-return": "off",
59-
"@typescript-eslint/require-array-sort-compare": "off",
60-
"require-await": "off",
61-
"@typescript-eslint/require-await": "off",
62-
"@typescript-eslint/unbound-method": "off",
63-
"func-names": "off",
64-
"import/no-default-export": "off",
65-
"import/no-named-as-default-member": "off",
66-
"import/no-named-as-default": "off",
67-
"new-cap": "off",
68-
"no-await-in-loop": "off",
69-
"no-console": "off",
70-
"no-constant-binary-expression": "off",
71-
"no-extend-native": "off",
72-
"no-param-reassign": "off",
73-
"no-promise-executor-return": "off",
74-
"no-prototype-builtins": "off",
75-
"prefer-named-capture-group": "off",
76-
"prefer-regex-literals": "off",
77-
"tsdoc/syntax": "off",
36+
"@typescript-eslint/ban-ts-comment": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/35
37+
"@typescript-eslint/ban-types": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/36
38+
"@typescript-eslint/explicit-function-return-type": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/37
39+
"@typescript-eslint/naming-convention": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/38
40+
"@typescript-eslint/no-confusing-void-expression": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/39
41+
"no-empty-function": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/40
42+
"@typescript-eslint/no-empty-function": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/40
43+
"@typescript-eslint/no-explicit-any": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/61
44+
"@typescript-eslint/no-floating-promises": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/62
45+
"@typescript-eslint/no-misused-promises": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/41
46+
"@typescript-eslint/no-non-null-assertion": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/42
47+
"@typescript-eslint/no-redundant-type-constituents": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/43
48+
"no-shadow": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/45
49+
"@typescript-eslint/no-shadow": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/45
50+
"no-throw-literal": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/46
51+
"@typescript-eslint/no-throw-literal": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/46
52+
"@typescript-eslint/no-unnecessary-condition": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/47
53+
"@typescript-eslint/no-unnecessary-type-constraint": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/48
54+
"@typescript-eslint/no-unsafe-argument": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/49
55+
"@typescript-eslint/no-unsafe-assignment": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/50
56+
"@typescript-eslint/no-unsafe-call": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/51
57+
"@typescript-eslint/no-unsafe-member-access": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/52
58+
"@typescript-eslint/no-unsafe-return": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/53
59+
"@typescript-eslint/require-array-sort-compare": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/53
60+
"require-await": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/55
61+
"@typescript-eslint/require-await": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/55
62+
"@typescript-eslint/unbound-method": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/57
63+
"func-names": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/58
64+
"import/no-default-export": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/59
65+
"import/no-named-as-default-member": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/60
66+
"import/no-named-as-default": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/63
67+
"new-cap": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/64
68+
"no-await-in-loop": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/65
69+
"no-console": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/66
70+
"no-constant-binary-expression": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/67
71+
"no-extend-native": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/68
72+
"no-param-reassign": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/69
73+
"no-promise-executor-return": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/70
74+
"no-prototype-builtins": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/71
75+
"prefer-named-capture-group": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/72
76+
"prefer-regex-literals": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/73
77+
"tsdoc/syntax": "off", // TODO: https://github.com/rsm-hcd/hcd-javascript/issues/74
7878
},
7979
};

0 commit comments

Comments
 (0)