We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
no-common
1 parent a9bd482 commit 0c99eb2Copy full SHA for 0c99eb2
index.js
@@ -6,7 +6,6 @@ exports.rules = {
6
7
"no-reassign": require("./lib/rules/no-reassign"),
8
9
- "no-common": require("./lib/rules/no-common"),
10
"no-errors": require("./lib/rules/no-errors"),
11
12
"exists": require("./lib/rules/no-unresolved")
@@ -20,6 +19,6 @@ exports.rulesConfig = {
20
19
21
"no-reassign": 1,
22
23
- "no-common": 0,
24
"no-errors": 0
25
};
+
tests/lib/package.js
@@ -0,0 +1,13 @@
1
+"use strict";
2
3
+var expect = require("chai").expect;
4
5
+var path = require("path");
+describe("package", function () {
+ it("is importable", function () {
+ expect(require(path.join(process.cwd()))).to.exist;
+ });
+ // TODO: it has every rule
+});
13
0 commit comments