eslint-stylistic-airbnb 2.0.0 → 2.0.1

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/package.json +3 -2
  2. package/rules/style.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-stylistic-airbnb",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Airbnb config for eslint using stylistic plugin",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -21,6 +21,7 @@
21
21
  "rules"
22
22
  ],
23
23
  "license": "MIT",
24
+ "packageManager": "pnpm@9.6.0+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e",
24
25
  "dependencies": {
25
26
  "confusing-browser-globals": "^1.0.11"
26
27
  },
@@ -28,4 +29,4 @@
28
29
  "eslint": ">=8.57.0",
29
30
  "@stylistic/eslint-plugin": ">=2.0.0"
30
31
  }
31
- }
32
+ }
package/rules/style.js CHANGED
@@ -101,7 +101,7 @@ module.exports = {
101
101
  // enforce spacing between functions and their invocations
102
102
  // https://eslint.org/docs/rules/func-call-spacing
103
103
  // https://eslint.style/rules/default/func-call-spacing
104
- '@stylistic/func-call-spacing': ['error', 'never'],
104
+ '@stylistic/function-call-spacing': ['error', 'never'],
105
105
 
106
106
  // requires function names to match the name of the variable or property to which they are
107
107
  // assigned