Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eslint-plugin-i18next

Package Overview
Dependencies
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-i18next - npm Package Compare versions

Comparing version 1.1.3 to 1.2.0

11

CHANGELOG.md

@@ -1,5 +0,14 @@

# Change Log
# Changelog
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
## [1.2.0](https://github.com/edvardchen/eslint-plugin-i18next/compare/v1.1.3...v1.2.0) (2019-06-20)
### Features
* skip checking import(...) ([7306038](https://github.com/edvardchen/eslint-plugin-i18next/commit/7306038))
## [1.1.3](https://github.com/edvardchen/eslint-plugin-i18next/compare/v1.1.2...v1.1.3) (2019-04-08)

@@ -6,0 +15,0 @@

@@ -112,2 +112,5 @@ /**

if (temp.type === 'CallExpression') {
// import(...) is valid
if (temp.callee.type === 'Import') return;
if (isValidFunctionCall(temp)) return;

@@ -114,0 +117,0 @@ break;

4

package.json
{
"name": "eslint-plugin-i18next",
"version": "1.1.3",
"version": "1.2.0",
"description": "ESLint plugin for i18n",

@@ -34,3 +34,3 @@ "keywords": [

"husky": "^1.3.1",
"mocha": "^6.1.1",
"mocha": "^6.1.4",
"vue-eslint-parser": "^6.0.3"

@@ -37,0 +37,0 @@ },

@@ -31,2 +31,3 @@ /**

valid: [
{ code: 'import("hello")' },
{ code: 'import name from "hello";' },

@@ -33,0 +34,0 @@ { code: 'require("hello");' },

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc