eslint-config-heck 1.1.2 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/node.js +2 -2
- package/package.json +2 -2
package/node.js
CHANGED
|
@@ -800,7 +800,7 @@ const overrides = [
|
|
|
800
800
|
...globals,
|
|
801
801
|
NodeJS: true,
|
|
802
802
|
},
|
|
803
|
-
plugins: [...plugins, "@typescript-eslint", "typescript-heck"
|
|
803
|
+
plugins: [...plugins, "@typescript-eslint", "typescript-heck", "@delagen/deprecation"],
|
|
804
804
|
rules: {
|
|
805
805
|
// Typescript
|
|
806
806
|
"@typescript-eslint/adjacent-overload-signatures": "error",
|
|
@@ -1117,7 +1117,7 @@ const overrides = [
|
|
|
1117
1117
|
"@typescript-eslint/space-infix-ops": "error",
|
|
1118
1118
|
|
|
1119
1119
|
// Deprecation
|
|
1120
|
-
|
|
1120
|
+
"@delagen/deprecation/deprecation": "error",
|
|
1121
1121
|
|
|
1122
1122
|
// Typescript handles itself
|
|
1123
1123
|
"consistent-return": "off",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-heck",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Contains an ESLint configuration for ES2015+, TypeScript, and React.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
"author": "atheck",
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"dependencies": {
|
|
18
|
+
"@delagen/eslint-plugin-deprecation": "1.3.0",
|
|
18
19
|
"@typescript-eslint/eslint-plugin": "5.5.0",
|
|
19
20
|
"@typescript-eslint/parser": "5.5.0",
|
|
20
21
|
"eslint": "8.3.0",
|
|
21
|
-
"eslint-plugin-deprecation": "1.2.1",
|
|
22
22
|
"eslint-plugin-jest": "25.3.0",
|
|
23
23
|
"eslint-plugin-react": "7.27.1",
|
|
24
24
|
"eslint-plugin-typescript-heck": "1.2.0",
|