@fimbul/mimir
Advanced tools
Comparing version 0.9.0-dev.20180502 to 0.9.0-dev.20180505
@@ -27,2 +27,4 @@ # no-duplicate-case | ||
case `foo`: // same as above | ||
case someVariable: | ||
case someVariable: // same as above | ||
} | ||
@@ -41,3 +43,5 @@ ``` | ||
case (condition ? 'bar' : 'baz'): | ||
case someVariable: | ||
case someOtherVariable: | ||
} | ||
``` |
{ | ||
"name": "@fimbul/mimir", | ||
"version": "0.9.0-dev.20180502", | ||
"version": "0.9.0-dev.20180505", | ||
"description": "Core rules of the Fimbullinter project", | ||
@@ -28,3 +28,3 @@ "main": "recommended.yaml", | ||
"dependencies": { | ||
"@fimbul/ymir": "0.9.0-dev.20180501", | ||
"@fimbul/ymir": "0.9.0-dev.20180505", | ||
"chalk": "^2.3.2", | ||
@@ -31,0 +31,0 @@ "debug": "^3.1.0", |
@@ -32,3 +32,3 @@ # Mímir | ||
[`no-duplicate-spread-property`](docs/no-duplicate-spread-property.md) | :mag: Detects properties in object literals with object spread that are always overridden. | TSLint has no such rule. | ||
`no-fallthrough` | Prevents unintentional fallthough in `switch` statements from one case to another. If the fallthrough is intended, add a comment that matches `/^\s*falls? ?through\b/i`. | Allows more comment variants such as `fallthrough` or `fall through`. | ||
[`no-fallthrough`](docs/no-fallthrough.md) | Prevents unintentional fallthough in `switch` statements from one case to another. | Allows more comment variants such as `fallthrough` or `fall through`. | ||
`no-inferred-empty-object` | Warns if a type parameter is inferred as `{}` because the compiler cannot find any inference site. *requires type information* | Really checks every type parameter of function, method and constructor calls. Correctly handles type parameters from JSDoc comments. Recognises type parameter defaults on all merged declarations. | ||
@@ -35,0 +35,0 @@ `no-invalid-assertion` | Disallows asserting a literal type to a different literal type of the same widened type, e.g. `'foo' as 'bar'`. *requires type information* | TSLint has no similar rule. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
299434
142
+ Added@fimbul/ymir@0.9.0-dev.20180505(transitive)
- Removed@fimbul/ymir@0.9.0-dev.20180501(transitive)