Skip to content

Commit 81288e3

Browse files
committed
chess game
1 parent edde5a4 commit 81288e3

File tree

8 files changed

+83
-776
lines changed

8 files changed

+83
-776
lines changed

Diff for: .eslintrc.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es2021": true
5+
},
6+
"extends": ["eslint:recommended", "plugin:react/recommended"],
7+
"parserOptions": {
8+
"ecmaVersion": "latest",
9+
"sourceType": "module"
10+
},
11+
"plugins": ["react"],
12+
"settings": {
13+
"react": {
14+
"version": "detect"
15+
}
16+
},
17+
"rules": {
18+
"no-console": "off",
19+
"quotes": ["warn", "double"],
20+
"eqeqeq": "warn"
21+
}
22+
}

Diff for: .gitignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*

0 commit comments

Comments
 (0)