Socket
Socket
Sign inDemoInstall

eslint-plugin-organize-imports

Package Overview
Dependencies
191
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.43 to 0.0.44

2

package.json
{
"name": "eslint-plugin-organize-imports",
"version": "0.0.43",
"version": "0.0.44",
"description": "ESLint plugin boilerplate",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -75,3 +75,3 @@ # eslint-plugin-organize-imports:

import _ from 'lodash';
import sampleUtils from '<shared>/utils/sample-utils'; /* [eslint] module import: no associated "// utility modules" comment */
import sampleUtils from '<shared>/utils/sample-utils'; /* [eslint] no associated "// utility modules" comment */
```

@@ -81,5 +81,5 @@ ### invalid code - (wrong order of import-groups)

```js
// utility modules /* [eslint] module import: "utilityModule" modules need to be after "nodeModule" modules */
// utility modules /* [eslint] "utilityModule" modules need to be after "nodeModule" modules */
import sampleUtils from '<shared>/utils/sample-utils';
// vendor modules /* [eslint] module import: "nodeModule" modules need to be first in order */
// vendor modules
import React, {Component} from 'react';

@@ -86,0 +86,0 @@ import PropTypes from 'prop-types';

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc