Skip to content
Permalink
9bfb9ba527
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
32 lines (21 sloc) 417 Bytes

import/no-self-import

Forbid a module from importing itself. This can sometimes happen during refactoring.

Rule Details

Fail

// foo.js
import foo from './foo';

const foo = require('./foo');
// index.js
import index from '.';

const index = require('.');

Pass

// foo.js
import bar from './bar';

const bar = require('./bar');