eslint-config-isaacscript 1.0.53 → 1.0.54

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.
Files changed (2) hide show
  1. package/base.js +0 -6
  2. package/package.json +2 -4
package/base.js CHANGED
@@ -47,12 +47,6 @@ module.exports = {
47
47
  // https://github.com/Zamiell/eslint-plugin-no-void-return-type
48
48
  "plugin:no-void-return-type/recommended",
49
49
 
50
- // We use Prettier to automatically format TypeScript files
51
- // We want to run Prettier as an ESLint rule so that we can detect non-formatted files in CI
52
- // https://github.com/prettier/eslint-plugin-prettier
53
- // https://silvenon.com/blog/integrating-and-enforcing-prettier-and-eslint
54
- "plugin:prettier/recommended",
55
-
56
50
  // Disable any ESLint rules that conflict with Prettier
57
51
  // (otherwise, we will have unfixable ESLint errors)
58
52
  // https://github.com/prettier/eslint-config-prettier
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-isaacscript",
3
- "version": "1.0.53",
3
+ "version": "1.0.54",
4
4
  "description": "An ESLint config for IsaacScript projects.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -9,8 +9,6 @@
9
9
  "license": "GPL-3.0",
10
10
  "author": "Zamiell",
11
11
  "devDependencies": {
12
- "eslint": "^8.3.0",
13
- "eslint-plugin-prettier": "^4.0.0",
14
- "prettier": "^2.5.0"
12
+ "prettier": "^2.5.1"
15
13
  }
16
14
  }