Skip to content

Commit 60e2220

Browse files
committed
lint
1 parent 8bb6a3b commit 60e2220

File tree

6 files changed

+147
-41
lines changed

6 files changed

+147
-41
lines changed

.editorconfig

+6-11
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,14 @@ indent_size = 2
99
trim_trailing_whitespace = true
1010
insert_final_newline = true
1111

12-
[*.json]
13-
indent_style = space
14-
indent_size = 2
15-
16-
[*.yml]
17-
indent_style = space
18-
indent_size = 2
19-
2012
[*.md]
21-
indent_style = space
22-
indent_size = 2
2313
trim_trailing_whitespace = false
14+
insert_final_newline = false
15+
16+
[test/**]
17+
trim_trailing_whitespace = false
18+
insert_final_newline = false
2419

25-
[{test/,}fixtures/**]
20+
[templates/**]
2621
trim_trailing_whitespace = false
2722
insert_final_newline = false

.eslintrc.json

+125
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
{
2+
"ecmaFeatures": {
3+
"modules": true,
4+
"experimentalObjectRestSpread": true
5+
},
6+
7+
"env": {
8+
"browser": false,
9+
"es6": true,
10+
"node": true,
11+
"mocha": true
12+
},
13+
14+
"globals": {
15+
"document": false,
16+
"navigator": false,
17+
"window": false
18+
},
19+
20+
"rules": {
21+
"accessor-pairs": 2,
22+
"arrow-spacing": [2, { "before": true, "after": true }],
23+
"block-spacing": [2, "always"],
24+
"brace-style": [2, "1tbs", { "allowSingleLine": true }],
25+
"comma-dangle": [2, "never"],
26+
"comma-spacing": [2, { "before": false, "after": true }],
27+
"comma-style": [2, "last"],
28+
"constructor-super": 2,
29+
"curly": [2, "multi-line"],
30+
"dot-location": [2, "property"],
31+
"eol-last": 2,
32+
"eqeqeq": [2, "allow-null"],
33+
"generator-star-spacing": [2, { "before": true, "after": true }],
34+
"handle-callback-err": [2, "^(err|error)$" ],
35+
"indent": [2, 2, { "SwitchCase": 1 }],
36+
"key-spacing": [2, { "beforeColon": false, "afterColon": true }],
37+
"new-cap": [2, { "newIsCap": true, "capIsNew": false }],
38+
"new-parens": 2,
39+
"no-array-constructor": 2,
40+
"no-caller": 2,
41+
"no-class-assign": 2,
42+
"no-cond-assign": 2,
43+
"no-const-assign": 2,
44+
"no-control-regex": 2,
45+
"no-debugger": 2,
46+
"no-delete-var": 2,
47+
"no-dupe-args": 2,
48+
"no-dupe-class-members": 2,
49+
"no-dupe-keys": 2,
50+
"no-duplicate-case": 2,
51+
"no-empty-character-class": 2,
52+
"no-empty-label": 2,
53+
"no-eval": 2,
54+
"no-ex-assign": 2,
55+
"no-extend-native": 2,
56+
"no-extra-bind": 2,
57+
"no-extra-boolean-cast": 2,
58+
"no-extra-parens": [2, "functions"],
59+
"no-fallthrough": 2,
60+
"no-floating-decimal": 2,
61+
"no-func-assign": 2,
62+
"no-implied-eval": 2,
63+
"no-inner-declarations": [2, "functions"],
64+
"no-invalid-regexp": 2,
65+
"no-irregular-whitespace": 2,
66+
"no-iterator": 2,
67+
"no-label-var": 2,
68+
"no-labels": 2,
69+
"no-lone-blocks": 2,
70+
"no-mixed-spaces-and-tabs": 2,
71+
"no-multi-spaces": 2,
72+
"no-multi-str": 2,
73+
"no-multiple-empty-lines": [2, { "max": 1 }],
74+
"no-native-reassign": 2,
75+
"no-negated-in-lhs": 2,
76+
"no-new": 2,
77+
"no-new-func": 2,
78+
"no-new-object": 2,
79+
"no-new-require": 2,
80+
"no-new-wrappers": 2,
81+
"no-obj-calls": 2,
82+
"no-octal": 2,
83+
"no-octal-escape": 2,
84+
"no-proto": 0,
85+
"no-redeclare": 2,
86+
"no-regex-spaces": 2,
87+
"no-return-assign": 2,
88+
"no-self-compare": 2,
89+
"no-sequences": 2,
90+
"no-shadow-restricted-names": 2,
91+
"no-spaced-func": 2,
92+
"no-sparse-arrays": 2,
93+
"no-this-before-super": 2,
94+
"no-throw-literal": 2,
95+
"no-trailing-spaces": 0,
96+
"no-undef": 2,
97+
"no-undef-init": 2,
98+
"no-unexpected-multiline": 2,
99+
"no-unneeded-ternary": [2, { "defaultAssignment": false }],
100+
"no-unreachable": 2,
101+
"no-unused-vars": [2, { "vars": "all", "args": "none" }],
102+
"no-useless-call": 0,
103+
"no-with": 2,
104+
"one-var": [0, { "initialized": "never" }],
105+
"operator-linebreak": [0, "after", { "overrides": { "?": "before", ":": "before" } }],
106+
"padded-blocks": [0, "never"],
107+
"quotes": [2, "single", "avoid-escape"],
108+
"radix": 2,
109+
"semi": [2, "always"],
110+
"semi-spacing": [2, { "before": false, "after": true }],
111+
"space-after-keywords": [2, "always"],
112+
"space-before-blocks": [2, "always"],
113+
"space-before-function-paren": [2, "never"],
114+
"space-before-keywords": [2, "always"],
115+
"space-in-parens": [2, "never"],
116+
"space-infix-ops": 2,
117+
"space-return-throw-case": 2,
118+
"space-unary-ops": [2, { "words": true, "nonwords": false }],
119+
"spaced-comment": [0, "always", { "markers": ["global", "globals", "eslint", "eslint-disable", "*package", "!", ","] }],
120+
"use-isnan": 2,
121+
"valid-typeof": 2,
122+
"wrap-iife": [2, "any"],
123+
"yoda": [2, "never"]
124+
}
125+
}

.jshintrc

-18
This file was deleted.

.travis.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
sudo: false
22
language: node_js
33
node_js:
4-
- "0.10"
4+
- "stable"
5+
- "5"
6+
- "4"
57
- "0.12"
6-
- "iojs"
7-
git:
8-
depth: 10
8+
- "0.10"
9+
matrix:
10+
fast_finish: true
11+
allow_failures:
12+
- node_js: "0.10"

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, Jon Schlinkert.
3+
Copyright (c) 2015-2016, Jon Schlinkert.
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

test.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,26 @@
77

88
'use strict';
99

10-
/* deps:mocha */
10+
require('mocha');
11+
require('should');
1112
var fs = require('fs');
12-
var should = require('should');
1313
var handlebars = require('handlebars');
1414
var coverage = require('./');
1515

1616
var expected = fs.readFileSync('fixtures/expected.txt', 'utf8');
1717

18-
describe('coverage', function () {
19-
it('should include a formatted coverage report:', function () {
18+
describe('coverage', function() {
19+
it('should include a formatted coverage report:', function() {
2020
coverage('fixtures/summary.txt').should.equal(expected);
2121
});
2222

23-
it('should work as a handlebars helper:', function () {
23+
it('should work as a handlebars helper:', function() {
2424
handlebars.registerHelper('coverage', coverage);
2525
handlebars.compile('{{coverage "fixtures/summary.txt"}}')().should.equal(expected);
2626
});
2727

28-
it('should throw an error when the file cannot be found:', function () {
29-
(function () {
28+
it('should throw an error when the file cannot be found:', function() {
29+
(function() {
3030
coverage('foo');
3131
}).should.throw('helper-coverage cannot find: foo');
3232
});

0 commit comments

Comments
 (0)