eslint-plugin-functional
Advanced tools
Comparing version 1.0.0-rc.1 to 1.0.0-rc.2
@@ -8,8 +8,27 @@ # Changelog | ||
## [Unreleased](https://github.com/jonaskello/eslint-plugin-functional/compare/v0.5.3...HEAD) | ||
## [Unreleased](https://github.com/jonaskello/eslint-plugin-functional/compare/v1.0.0-rc.2...HEAD) | ||
## [v0.5.3](https://github.com/jonaskello/eslint-plugin-functional/compare/v0.5.1...v0.5.3) - 2019-08-02 | ||
## [v1.0.0-rc.2](https://github.com/jonaskello/eslint-plugin-functional/compare/v1.0.0-rc.1...v1.0.0-rc.2) - 2019-08-07 | ||
### Fixed | ||
- fix(prefer-readonly-type): index signatures in type literals can now be ignored [`#56`](https://github.com/jonaskello/eslint-plugin-functional/issues/56) | ||
## [v1.0.0-rc.1](https://github.com/jonaskello/eslint-plugin-functional/compare/v0.5.3...v1.0.0-rc.1) - 2019-08-06 | ||
### Merged | ||
- fix(immutable-data): Implement option ignoreImmediateMutation [`#59`](https://github.com/jonaskello/eslint-plugin-functional/pull/59) | ||
- Rename Options [`#55`](https://github.com/jonaskello/eslint-plugin-functional/pull/55) | ||
- Fix #56 [`#57`](https://github.com/jonaskello/eslint-plugin-functional/pull/57) | ||
## [v0.5.3](https://github.com/jonaskello/eslint-plugin-functional/compare/v0.5.2...v0.5.3) - 2019-08-02 | ||
### Merged | ||
- tslint migration guide [`#54`](https://github.com/jonaskello/eslint-plugin-functional/pull/54) | ||
- Rename Rules [`#53`](https://github.com/jonaskello/eslint-plugin-functional/pull/53) | ||
### Fixed | ||
- fix(immutable-data): ignore call expressions on ignored arrays [`#56`](https://github.com/jonaskello/eslint-plugin-functional/issues/56) | ||
@@ -16,0 +35,0 @@ |
@@ -469,2 +469,3 @@ 'use strict'; | ||
isTSTypeAnnotation(node) || | ||
isTSTypeLiteral(node) || | ||
isTSTypeReference(node) | ||
@@ -572,3 +573,3 @@ ? getNodeIdentifierText(node.parent, context) | ||
const version = "0.5.3"; | ||
const version = "1.0.0-rc.1"; | ||
@@ -575,0 +576,0 @@ // This function can't be functional as it needs to interact with 3rd-party |
{ | ||
"name": "eslint-plugin-functional", | ||
"version": "1.0.0-rc.1", | ||
"version": "1.0.0-rc.2", | ||
"description": "ESLint rules to disable mutation and promote fp in TypeScript.", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
Sorry, the diff of this file is not supported yet
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
151467
3740