Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
penx committed Jun 23, 2020
0 parents commit 4d1606b
Show file tree
Hide file tree
Showing 6 changed files with 1,402 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .eslintrc.js
@@ -0,0 +1,4 @@
module.exports = {
parser: 'babel-eslint',
extends: ['plugin:import/errors']
};
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
/node_modules
1 change: 1 addition & 0 deletions color.js
@@ -0,0 +1 @@
export const example = 'example';
3 changes: 3 additions & 0 deletions index.js
@@ -0,0 +1,3 @@
import * as color from './color';
export const getBackgroundFromColor = (color) => color.bg;
export const getExampleColor = () => color.example
25 changes: 25 additions & 0 deletions package.json
@@ -0,0 +1,25 @@
{
"name": "eslint-plugin-import-bug",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/penx/eslint-plugin-import-bug.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/penx/eslint-plugin-import-bug/issues"
},
"homepage": "https://github.com/penx/eslint-plugin-import-bug#readme",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.3.1",
"eslint-plugin-import": "^2.21.2"
}
}

0 comments on commit 4d1606b

Please sign in to comment.