UNPKG

fen-analyzer

Version:

Chess FEN (Forsyth-Edwards Notation) positions analyzer. Having FEN as input helps to identify, e.g. how many pieces left on the board

24 lines (23 loc) 383 B
module.exports = { env: { es6: true, node: true, }, extends: [ 'airbnb-base', ], globals: { Atomics: 'readonly', SharedArrayBuffer: 'readonly', 'describe': true, 'expect': true, 'test': true, }, parserOptions: { ecmaVersion: 2018, sourceType: 'module', }, rules: { "linebreak-style": "off" }, };