tslint-immutable
Advanced tools
Comparing version 3.4.0 to 3.4.1
@@ -9,2 +9,9 @@ # Change Log | ||
## [v3.4.1] - 2017-05-14 | ||
### Added | ||
- Note in readme about moving the "other" rules. The `no-argument`, `no-label`, `no-semicolon-interface`, and `import containtment` rules are moving to [tslint-divid](https://github.com/jonaskello/tslint-divid). See [#19](https://github.com/jonaskello/tslint-immutable/issues/19) for more information. | ||
### Deprecated | ||
- The `no-argument`, `no-label`, `no-semicolon-interface`, and `import containtment` rules as noted above. | ||
## [v3.4.0] - 2017-05-14 | ||
@@ -98,3 +105,4 @@ ### Added | ||
[Unreleased]: https://github.com/jonaskello/tslint-immutable/compare/v3.4.0...master | ||
[Unreleased]: https://github.com/jonaskello/tslint-immutable/compare/v3.4.1...master | ||
[v3.4.1]: https://github.com/jonaskello/tslint-immutable/compare/v3.4.0...v3.4.1 | ||
[v3.4.0]: https://github.com/jonaskello/tslint-immutable/compare/v3.3.2...v3.4.0 | ||
@@ -101,0 +109,0 @@ [v3.3.2]: https://github.com/jonaskello/tslint-immutable/compare/v3.3.1...v3.3.2 |
{ | ||
"name": "tslint-immutable", | ||
"version": "3.4.0", | ||
"version": "3.4.1", | ||
"description": "TSLint rules to disable mutation in TypeScript.", | ||
@@ -5,0 +5,0 @@ "main": "tslint-immutable.json", |
@@ -237,2 +237,4 @@ # tslint-immutable | ||
> **NOTE: This rule has been moved to the [tslint-divid](https://www.npmjs.com/package/tslint-divid) package and will be removed from this package in the next major release.** | ||
Disallows use of the `arguments` keyword. | ||
@@ -242,2 +244,4 @@ | ||
> **NOTE: This rule has been moved to the [tslint-divid](https://www.npmjs.com/package/tslint-divid) package and will be removed from this package in the next major release.** | ||
Disallows the use of labels, and indirectly also `goto`. | ||
@@ -247,2 +251,4 @@ | ||
> **NOTE: This rule has been moved to the [tslint-divid](https://www.npmjs.com/package/tslint-divid) package and will be removed from this package in the next major release.** | ||
Ensures that interfaces only use commas as separator instead semicolor. | ||
@@ -265,2 +271,4 @@ | ||
> **NOTE: This rule has been moved to the [tslint-divid](https://www.npmjs.com/package/tslint-divid) package and will be removed from this package in the next major release.** | ||
ECMAScript modules does not have a concept of a library that can span multiple files and share internal members. If you have a set of files that forms an library, and they need to be able to call each other internally without exposing members to other files outside the library set, this rule can be useful. | ||
@@ -339,4 +347,3 @@ | ||
// Immutability rules | ||
"readonly-interface": true, | ||
"readonly-indexer": true, | ||
"readonly-keyword": true, | ||
"readonly-array": true, | ||
@@ -352,13 +359,2 @@ "no-let": true, | ||
// Other rules | ||
"no-arguments": true, | ||
"no-label": true, | ||
"no-semicolon-interface": true, | ||
"import-containment": [ true, | ||
{ | ||
"containmentPath": "path/to/libs", | ||
"allowedExternalFileNames": ["index"], | ||
"disallowedInternalFileNames": ["index"] | ||
}] | ||
} | ||
@@ -365,0 +361,0 @@ } |
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
73503
377