@sinemacula/coding-standards 1.19.0 → 1.19.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/README.md +4 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -282,7 +282,6 @@ native directive - `// phpcs:ignore <code>` for a sniff, `@phpstan-ignore <ident
282
282
  |------------------------------------------------------------|-----------------------------------------------------------------------------|
283
283
  | `SineMacula.Attributes.DisallowToolingAttribute` | No IDE/tooling attributes (e.g. `JetBrains\PhpStorm`). |
284
284
  | `SineMacula.Classes.RequireFinalClass` | Concrete classes must be `final` or `abstract` (`@inheritable` opts out). |
285
- | `SineMacula.Classes.RequireReadonlyClass` | A class with only `readonly` properties (no statics) must be `readonly`. |
286
285
  | `SineMacula.Classes.RequireReadonlyPublicProperty` | Public properties (declared or promoted) must be `readonly`. |
287
286
  | `SineMacula.Commenting.CommentLineLength` | Standalone comment prose wrapped to 80 chars; premature wraps also fixed. |
288
287
  | `SineMacula.Commenting.ConsistentEnumCaseComments` | Enum case docs are all-or-nothing within an enum. |
@@ -304,15 +303,15 @@ native directive - `// phpcs:ignore <code>` for a sniff, `@phpstan-ignore <ident
304
303
  | `SineMacula.NamingConventions.DisallowInterfacePrefix` | Interface names must not use the Hungarian `I` prefix. |
305
304
  | `SineMacula.NamingConventions.ValidEnumCaseName` | Enum cases must be `SCREAMING_SNAKE_CASE`. |
306
305
  | `SineMacula.NamingConventions.ValidGlobalFunctionName` | Global functions must be declared in `snake_case`. |
307
- | `SineMacula.TypeHints.DisallowFullyQualifiedConstantType` | Constant types must be imported, not inline fully-qualified names. |
308
306
  | `SineMacula.TypeHints.RequireConstantType` | Class/interface/enum/trait constants must declare a native type. |
309
307
  | `SineMacula.WhiteSpace.PromotedConstructorSpacing` | Blank line above each promoted-constructor parameter. |
310
308
 
311
309
  ### PHPStan rules
312
310
 
313
- | Identifier | Enforces |
314
- |------------------------------------|-------------------------------------------------------------------|
315
- | `sineMacula.mutableStaticProperty` | Static properties written at runtime; `@managed-static` opts out. |
311
+ | Identifier | Enforces |
312
+ |------------------------------------|----------------------------------------------------------------------|
313
+ | `sineMacula.mutableStaticProperty` | Static properties written at runtime; `@managed-static` opts out. |
314
+ | `sineMacula.readonlyClass` | A final class with only readonly properties must be `readonly`. |
316
315
 
317
316
  ### ESLint rules
318
317
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinemacula/coding-standards",
3
- "version": "1.19.0",
3
+ "version": "1.19.1",
4
4
  "description": "Centralized coding standards, static analysis configurations, and code quality tooling for all Sine Macula repositories.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Ben Carey <bdmc@sinemacula.co.uk>",