summaryrefslogtreecommitdiff
path: root/utils/board.js
diff options
context:
space:
mode:
authorJulien Dessaux2023-01-05 02:09:07 +0100
committerJulien Dessaux2023-01-05 02:09:07 +0100
commitd7ed1196bdd44d7734d41d91a5e72a71785e0a08 (patch)
treeaafae6571d5154dc5e9a061c8f54ca8e9b1287ad /utils/board.js
parentAdded more tests (diff)
downloadjeux-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.js30
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;