fen-queue-processor
Version:
Process and analyzes queue of chess positions in FEN format
38 lines • 750 B
JavaScript
module.exports = {
"env": {
"node": true,
"es6": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2017
},
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"windows"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
},
"globals": {
"describe": true,
"it": true,
"beforeAll": true,
"beforeEach": true,
"require": true,
"spyOn": true,
"expect": true,
"jasmine": true
},
};