diff options
author | Julien Dessaux | 2023-01-05 02:09:07 +0100 |
---|---|---|
committer | Julien Dessaux | 2023-01-05 02:09:07 +0100 |
commit | d7ed1196bdd44d7734d41d91a5e72a71785e0a08 (patch) | |
tree | aafae6571d5154dc5e9a061c8f54ca8e9b1287ad /utils/board.js | |
parent | Added more tests (diff) | |
download | jeux-de-mots-d7ed1196bdd44d7734d41d91a5e72a71785e0a08.tar.gz jeux-de-mots-d7ed1196bdd44d7734d41d91a5e72a71785e0a08.tar.bz2 jeux-de-mots-d7ed1196bdd44d7734d41d91a5e72a71785e0a08.zip |
switched to single quotes string in eslint
Diffstat (limited to 'utils/board.js')
-rw-r--r-- | utils/board.js | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/utils/board.js b/utils/board.js index f9a3b9d..523e1ec 100644 --- a/utils/board.js +++ b/utils/board.js @@ -1,19 +1,19 @@ export const emptyBoard = [ - [ "", "", "", "", "","", "", "", "", "", "", "", "", "", "" ], - [ "", "", "", "", "","", "", "", "", "", "", "", "", "", "" ], - [ "", "", "", "", "","", "", "", "", "", "", "", "", "", "" ], - [ "", "", "", "", "","", "", "", "", "", "", "", "", "", "" ], - [ "", "", "", "", "","", "", "", "", "", "", "", "", "", "" ], - [ "", "", "", "", "","", "", "", "", "", "", "", "", "", "" ], - [ "", "", "", "", "","", "", "", "", "", "", "", "", "", "" ], - [ "", "", "", "", "","", "", "", "", "", "", "", "", "", "" ], - [ "", "", "", "", "","", "", "", "", "", "", "", "", "", "" ], - [ "", "", "", "", "","", "", "", "", "", "", "", "", "", "" ], - [ "", "", "", "", "","", "", "", "", "", "", "", "", "", "" ], - [ "", "", "", "", "","", "", "", "", "", "", "", "", "", "" ], - [ "", "", "", "", "","", "", "", "", "", "", "", "", "", "" ], - [ "", "", "", "", "","", "", "", "", "", "", "", "", "", "" ], - [ "", "", "", "", "","", "", "", "", "", "", "", "", "", "" ] + [ '', '', '', '', '','', '', '', '', '', '', '', '', '', '' ], + [ '', '', '', '', '','', '', '', '', '', '', '', '', '', '' ], + [ '', '', '', '', '','', '', '', '', '', '', '', '', '', '' ], + [ '', '', '', '', '','', '', '', '', '', '', '', '', '', '' ], + [ '', '', '', '', '','', '', '', '', '', '', '', '', '', '' ], + [ '', '', '', '', '','', '', '', '', '', '', '', '', '', '' ], + [ '', '', '', '', '','', '', '', '', '', '', '', '', '', '' ], + [ '', '', '', '', '','', '', '', '', '', '', '', '', '', '' ], + [ '', '', '', '', '','', '', '', '', '', '', '', '', '', '' ], + [ '', '', '', '', '','', '', '', '', '', '', '', '', '', '' ], + [ '', '', '', '', '','', '', '', '', '', '', '', '', '', '' ], + [ '', '', '', '', '','', '', '', '', '', '', '', '', '', '' ], + [ '', '', '', '', '','', '', '', '', '', '', '', '', '', '' ], + [ '', '', '', '', '','', '', '', '', '', '', '', '', '', '' ], + [ '', '', '', '', '','', '', '', '', '', '', '', '', '', '' ] ]; export const letters_total = 102; |