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 3815a2c commit 74f57aaCopy full SHA for 74f57aa
.eslintrc
@@ -1,4 +1,5 @@
1
{
2
+ "root": true,
3
"env": {
4
"browser": true,
5
"es6": true,
.nycrc
@@ -0,0 +1,28 @@
+{
+ "all": true,
+ "include": [
+ "index.js",
+ "lib/**/*.js",
6
+ "app/**/*.js"
7
+ ],
8
+ "exclude": [
9
+ "test/**/*.js",
10
+ "**/*.test.js",
11
+ "**/*.spec.js",
12
+ "coverage/**",
13
+ ".nyc_output/**"
14
15
+ "reporter": [
16
+ "text",
17
+ "text-summary",
18
+ "html",
19
+ "lcov"
20
21
+ "report-dir": "./coverage",
22
+ "check-coverage": true,
23
+ "per-file": true,
24
+ "lines": 80,
25
+ "statements": 80,
26
+ "functions": 80,
27
+ "branches": 80
28
+}
0 commit comments