changed to pre-commit

This commit is contained in:
Kevin Jahns
2015-06-16 19:51:14 +02:00
parent bf493216a2
commit 5a9f59913e
7 changed files with 18 additions and 4 deletions

11
src/Operations.js Normal file
View File

@@ -0,0 +1,11 @@
/* @flow */
class Operation { //eslint-disable-line no-unused-vars
i : number;
constructor (op) {
this.i = op.i;
}
yay () {
return this.i;
}
}

0
src/Operations.spec Normal file
View File