Skip to content

Commit d34bf22

Browse files
sehropebendrucker
authored andcommitted
Add linter (standard) (#94)
1 parent 2c515ea commit d34bf22

File tree

7 files changed

+1737
-363
lines changed

7 files changed

+1737
-363
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
test:
44
npm test
55

6+
lint:
7+
npm run lint
8+
69
patch: test
710
npm version patch -m "Bump version"
811
git push origin master --tags

lib/arrayParser.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
var array = require('postgres-array');
1+
var array = require('postgres-array')
22

33
module.exports = {
44
create: function (source, transform) {
55
return {
6-
parse: function() {
7-
return array.parse(source, transform);
6+
parse: function () {
7+
return array.parse(source, transform)
88
}
9-
};
9+
}
1010
}
11-
};
11+
}

0 commit comments

Comments
 (0)