Skip to content

Commit ad95ae9

Browse files
committed
Initial plugin with import rule
1 parent f676cb2 commit ad95ae9

12 files changed

+255
-2
lines changed

.babelrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"stage": 1
3+
}

.editorconfig

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
# Unix-style newlines with a newline ending every file
7+
[*]
8+
end_of_line = lf
9+
insert_final_newline = true
10+
11+
[*.js]
12+
charset = utf-8
13+
indent_style = space
14+
indent_size = 2
15+
16+
[{package.json,.travis.yml}]
17+
indent_style = space
18+
indent_size = 2

.eslintrc

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"env": {
3+
"node": true
4+
},
5+
"parser": "babel-eslint",
6+
"rules": {
7+
"comma-spacing": 2,
8+
"comma-style": [2, "last"],
9+
"one-var": [2, { "initialized": "never" }],
10+
"key-spacing": 0,
11+
"no-underscore-dangle": 0,
12+
"no-unused-vars": [2, { "vars": "all", "args": "none" }],
13+
"no-var": 2,
14+
"quotes": [2, "single", "avoid-escape"],
15+
"strict": 0
16+
}
17+
}

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules/
2+
lib/

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015 eslint-plugins
3+
Copyright (c) 2015 Matthew L Smith
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+54-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,54 @@
1-
# eslint-plugin-lodash
1+
ESLint-plugin-lodash
2+
===================
3+
4+
lodash specific linting rules for ESLint
5+
6+
# Installation
7+
8+
Install [ESLint](https://www.github.com/eslint/eslint) either locally or globally.
9+
10+
npm install eslint
11+
12+
If you installed `ESLint` globally, you have to install lodash plugin globally too. Otherwise, install it locally.
13+
14+
$ npm install eslint-plugin-lodash
15+
16+
The rules are specifically written to target ES6 JavaScript, so you'll want to
17+
use the [babel-eslint](https://github.com/babel/babel-eslint) parser.
18+
19+
# Configuration
20+
21+
Add `plugins` section and specify ESLint-plugin-lodash as a plugin.
22+
23+
```json
24+
{
25+
"parser": "babel-eslint",
26+
"plugins": [
27+
"lodash"
28+
]
29+
}
30+
```
31+
32+
Finally, enable all of the rules that you would like to use.
33+
34+
```json
35+
{
36+
"rules": {
37+
"lodash/import": 1,
38+
}
39+
}
40+
```
41+
42+
# List of supported rules
43+
44+
* [import](docs/rules/import.md): Prevent importing the entire lodash library.
45+
46+
## To Do
47+
48+
* Add Contributing Guide, until then PRs welcome!
49+
50+
[Any rule idea is welcome !](https://github.com/eslint-plugins/eslint-plugin-lodash/issues)
51+
52+
# License
53+
54+
ESLint-plugin-lodash is licensed under the [MIT License](LICENSE).

docs/rules/import.md

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Enforce that the entire lodash library is not imported
2+
3+
When building browser tools you want to keep the bundles as small as possible.
4+
You can either take a dependency on the various `lodash.x` modules that exist,
5+
or you can just have a dependency on the core library and only import what you
6+
need. This rule will allow you to do so and ensure that the entire library is
7+
not blindly imported.
8+
9+
## Rule Details
10+
11+
The following patterns are considered warnings:
12+
13+
```js
14+
import _ from 'lodash';
15+
```
16+
17+
```js
18+
import { default as something } from 'lodash';
19+
```
20+
21+
```js
22+
import 'lodash';
23+
```
24+
25+
The following patterns are not considered warnings:
26+
27+
```js
28+
import find from 'lodash/collection/find';
29+
```
30+
31+
## When Not To Use It
32+
33+
If you do not care that the entire lodash libary is imported.

package.json

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"name": "eslint-plugin-lodash",
3+
"version": "0.0.0",
4+
"description": "ESLint Plugin for use with the lodash library",
5+
"main": "lib/index.js",
6+
"scripts": {
7+
"test": "npm run lint && mocha && npm run build",
8+
"build": "rm -rf lib && babel src --out-dir lib",
9+
"lint": "eslint ./"
10+
},
11+
"repository": {
12+
"type": "git",
13+
"url": "git+https://github.com/eslint-plugins/eslint-plugin-lodash.git"
14+
},
15+
"author": "Matthew L Smith <[email protected]>",
16+
"license": "MIT",
17+
"bugs": {
18+
"url": "https://github.com/eslint-plugins/eslint-plugin-lodash/issues"
19+
},
20+
"homepage": "https://github.com/eslint-plugins/eslint-plugin-lodash#readme",
21+
"devDependencies": {
22+
"babel": "^5.6.7",
23+
"babel-eslint": "^3.1.18",
24+
"eslint": "^0.23.0",
25+
"eslint-tester": "^0.8.0",
26+
"is-my-json-valid": "^2.12.0",
27+
"mocha": "^2.2.5"
28+
},
29+
"keywords": [
30+
"eslint-plugin",
31+
"eslintplugin",
32+
"eslint",
33+
"lodash"
34+
]
35+
}

src/index.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import importRule from './rules/import';
2+
3+
export default {
4+
'import': importRule
5+
};

src/rules/import.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/**
2+
* @fileoverview Rule to enforce entire lodash library is not imported
3+
* @author Matt Smith
4+
* @copyright 2015 Matt Smith. All rights reserved.
5+
*/
6+
7+
export default function(context) {
8+
return {
9+
ImportDeclaration: function(node) {
10+
if (node.source.value === 'lodash') {
11+
context.report(node.source, 'Importing the entire lodash library is not permitted, please import the specific functions you need');
12+
}
13+
}
14+
};
15+
}

test/mocha.opts

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
--compilers js:babel/register
2+
--recursive

test/rules/import.Spec.js

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
import EslintTester from 'eslint-tester';
2+
import eslint from 'eslint';
3+
4+
let tester = new EslintTester(eslint.linter);
5+
6+
tester.addRuleTest('src/rules/import', {
7+
valid: [
8+
{
9+
code: 'import "something"',
10+
parser: 'babel-eslint'
11+
},
12+
{
13+
code: 'import something from "something"',
14+
parser: 'babel-eslint'
15+
},
16+
{
17+
code: 'import lodash from "something"',
18+
parser: 'babel-eslint'
19+
},
20+
{
21+
code: 'import { something } from "something"',
22+
parser: 'babel-eslint'
23+
},
24+
{
25+
code: 'import { default as other } from "something"',
26+
parser: 'babel-eslint'
27+
},
28+
{
29+
code: 'import find from "lodash/collection/find"',
30+
parser: 'babel-eslint'
31+
}
32+
],
33+
invalid: [
34+
{
35+
code: 'import "lodash"',
36+
parser: 'babel-eslint',
37+
errors: [{
38+
message: 'Importing the entire lodash library is not permitted, please import the specific functions you need'
39+
}]
40+
},
41+
{
42+
code: 'import _ from "lodash"',
43+
parser: 'babel-eslint',
44+
errors: [{
45+
message: 'Importing the entire lodash library is not permitted, please import the specific functions you need'
46+
}]
47+
},
48+
{
49+
code: 'import lodash from "lodash"',
50+
parser: 'babel-eslint',
51+
errors: [{
52+
message: 'Importing the entire lodash library is not permitted, please import the specific functions you need'
53+
}]
54+
},
55+
{
56+
code: 'import { something } from "lodash"',
57+
parser: 'babel-eslint',
58+
errors: [{
59+
message: 'Importing the entire lodash library is not permitted, please import the specific functions you need'
60+
}]
61+
},
62+
{
63+
code: 'import { default as other } from "lodash"',
64+
parser: 'babel-eslint',
65+
errors: [{
66+
message: 'Importing the entire lodash library is not permitted, please import the specific functions you need'
67+
}]
68+
}
69+
]
70+
});

0 commit comments

Comments
 (0)