eslint-plugin-code-style 1.0.9 → 1.0.10

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 (3) hide show
  1. package/README.md +1 -1
  2. package/index.d.ts +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -170,7 +170,7 @@ rules: {
170
170
  "code-style/object-property-value-format": "error",
171
171
  "code-style/opening-brackets-same-line": "error",
172
172
  "code-style/simple-call-single-line": "error",
173
- "code-style/single-argument-on-line": "error",
173
+ "code-style/single-argument-on-one-line": "error",
174
174
  "code-style/string-property-spacing": "error",
175
175
  "code-style/variable-naming-convention": "error",
176
176
  }
package/index.d.ts CHANGED
@@ -48,7 +48,7 @@ export type RuleNames =
48
48
  | "code-style/object-property-value-format"
49
49
  | "code-style/opening-brackets-same-line"
50
50
  | "code-style/simple-call-single-line"
51
- | "code-style/single-argument-on-line"
51
+ | "code-style/single-argument-on-one-line"
52
52
  | "code-style/string-property-spacing"
53
53
  | "code-style/variable-naming-convention";
54
54
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-code-style",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "A custom ESLint plugin for enforcing consistent code formatting and style rules in React/JSX projects",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",