eslint-config-isaacscript 1.0.63 → 1.0.64

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 +3 -3
  2. package/package.json +1 -1
package/base.js CHANGED
@@ -23,7 +23,7 @@ module.exports = {
23
23
  "plugin:@typescript-eslint/recommended-requiring-type-checking",
24
24
 
25
25
  // This provides rules for max comment length that the "--fix" flag can fix
26
- "plugin:comment-length/recommended",
26
+ "plugin:comment-length-2/recommended",
27
27
 
28
28
  // This provides a version of the "eqeqeq" rule that the "--fix" flag can fix
29
29
  // https://github.com/Zamiell/eslint-plugin-eqeqeq-fix
@@ -207,7 +207,7 @@ module.exports = {
207
207
  // Defined at:
208
208
  // https://github.com/lasselupe33/eslint-plugin-comment-length/blob/master/rules/src/index.ts
209
209
  // Auto-fix long comments. We specify 100 to match the ruler and the Airbnb style guide.
210
- "comment-length/limit-multi-line-comments": [
210
+ "comment-length-2/limit-multi-line-comments": [
211
211
  "warn",
212
212
  {
213
213
  maxLength: 100,
@@ -219,7 +219,7 @@ module.exports = {
219
219
  // Defined at:
220
220
  // https://github.com/lasselupe33/eslint-plugin-comment-length/blob/master/rules/src/index.ts
221
221
  // Auto-fix long comments. We specify 100 to match the ruler and the Airbnb style guide.
222
- "comment-length/limit-single-line-comments": [
222
+ "comment-length-2/limit-single-line-comments": [
223
223
  "warn",
224
224
  {
225
225
  maxLength: 100,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-isaacscript",
3
- "version": "1.0.63",
3
+ "version": "1.0.64",
4
4
  "description": "An ESLint config for IsaacScript projects.",
5
5
  "repository": {
6
6
  "type": "git",