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.
1 parent dafa1a7 commit 4352fd6Copy full SHA for 4352fd6
.eslintignore
.eslintrc
@@ -10,6 +10,17 @@
10
"plugins": [
11
"flowtype"
12
],
13
+ "ignorePatterns": [
14
+ "lib/",
15
+ "node_modules/",
16
+ "reports/",
17
+ "node_modules.nosync/",
18
+ "__tests-built__",
19
+ "coverage/",
20
+ ".nyc_output/",
21
+ "flow-typed/",
22
+ "flow/",
23
+ ],
24
"overrides": [
25
{
26
"files": [
package.json
@@ -9,7 +9,7 @@
9
"scripts": {
"build": "rimraf lib && babel src --out-dir lib",
"flow": "flow",
- "lint": "eslint --config .eslintrc src __tests__ scripts",
+ "lint": "eslint --ext=js,mjs .",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run build",
"pretest": "npm run lint:fix && npm run flow",
0 commit comments