Skip to content

Commit 30c40d8

Browse files
Add eslint-plugin-deprecation rule (#34)
1 parent c7c7eab commit 30c40d8

File tree

3 files changed

+151
-2
lines changed

3 files changed

+151
-2
lines changed

package-lock.json

+145
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/eslint-config-minecraft-scripting/index.mjs

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import header from 'eslint-plugin-header';
66
import minecraftLinting from 'eslint-plugin-minecraft-linting';
77
import tsEslint from '@typescript-eslint/eslint-plugin';
88
import tsParser from '@typescript-eslint/parser';
9+
import deprecation from 'eslint-plugin-deprecation';
910

1011
export default [
1112
eslintConfigPrettier,
@@ -28,6 +29,7 @@ export default [
2829
'@typescript-eslint': tsEslint,
2930
unicorn: eslintPluginUnicorn,
3031
'minecraft-linting': minecraftLinting,
32+
deprecation,
3133
},
3234
rules: {
3335
...tsEslint.configs['eslint-recommended'].rules,
@@ -59,6 +61,7 @@ export default [
5961
1,
6062
],
6163
'minecraft-linting/avoid-unnecessary-command': 'error',
64+
'deprecation/deprecation': 'warn',
6265
},
6366
},
6467
];

tools/eslint-config-minecraft-scripting/package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@
88
"@typescript-eslint/eslint-plugin": "^7.2.0",
99
"@typescript-eslint/parser": "^7.2.0",
1010
"eslint": "^8.53.0",
11+
"eslint-config-prettier": "^9.0.0",
1112
"eslint-plugin-header": "^3.1.1",
1213
"eslint-plugin-minecraft-linting": "*",
13-
"eslint-config-prettier": "^9.0.0",
14-
"eslint-plugin-unicorn": "^42.0.0"
14+
"eslint-plugin-unicorn": "^42.0.0",
15+
"eslint-plugin-deprecation": "^3.0.0"
1516
},
1617
"publishConfig": {
1718
"access": "public"

0 commit comments

Comments
 (0)