jenova
Version:
A game of life module that is intended to work both in a server side and client side environment.
23 lines • 439 B
JavaScript
module.exports = {
"env": {
"browser": true,
"commonjs": true,
"mocha": true
},
"extends": "defaults/configurations/google",
"ignorePath": "./example/",
"rules": {
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
};