mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-06-28 21:05:36 -04:00
feat: ship class and test
This commit is contained in:
parent
36bf0c07d6
commit
685020dc94
14 changed files with 9884 additions and 0 deletions
21
battleship/.eslintrc.js
Normal file
21
battleship/.eslintrc.js
Normal file
|
@ -0,0 +1,21 @@
|
|||
module.exports = {
|
||||
env: {
|
||||
browser: true,
|
||||
es2021: true,
|
||||
node: true,
|
||||
},
|
||||
extends: ['eslint:recommended', 'prettierd'],
|
||||
parserOptions: {
|
||||
ecmaVersion: 'latest',
|
||||
sourceType: 'module',
|
||||
},
|
||||
overrides: [
|
||||
{
|
||||
files: ['tests/**/*'],
|
||||
plugins: ['jest'],
|
||||
env: {
|
||||
'jest/globals': true,
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue