Skip to content

Solution: Pere Serra y Alberto Chica #19

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 40 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
00d7221
todo app js solved
Interna1ta Sep 21, 2021
7f17574
created components folder and files
Interna1ta Sep 21, 2021
0728ef1
fixed props problems
Interna1ta Sep 21, 2021
a94099c
added remove all complete tasks button
Interna1ta Sep 21, 2021
fcec9e0
clean code
Interna1ta Sep 21, 2021
1d026f6
draganddrop
badyalberto Sep 22, 2021
4ef482e
styles improvements
Interna1ta Sep 22, 2021
28e74f3
npm audit fix
Interna1ta Sep 22, 2021
6cb997c
drag and drop finished
badyalberto Sep 22, 2021
9c361a7
finished
badyalberto Sep 22, 2021
6f334af
added dark mode toggle
Interna1ta Sep 22, 2021
5cde75c
merge with pere
badyalberto Sep 22, 2021
df5a169
merge projects
Interna1ta Sep 22, 2021
d459b84
new task styles
Interna1ta Sep 22, 2021
f5669d1
themes in different js file
Interna1ta Sep 22, 2021
5a7ac9d
Merge branch 'pere' into dev
Interna1ta Sep 22, 2021
5d72fd7
package
badyalberto Sep 22, 2021
e006e82
design
badyalberto Sep 23, 2021
74a552b
added atomic design structure
Interna1ta Sep 23, 2021
fb68623
more atomic design
Interna1ta Sep 23, 2021
24b9d9f
create templates and pages folders
Interna1ta Sep 23, 2021
d742ff8
added pages and browse routes
Interna1ta Sep 23, 2021
b0d33a3
fix router + improve styles
Interna1ta Sep 23, 2021
84ff6e6
fix dark mode
Interna1ta Sep 23, 2021
ee913b1
fix the errors
badyalberto Sep 24, 2021
5237245
changes
badyalberto Sep 27, 2021
37d8bc5
update package-lock.json
Interna1ta Sep 27, 2021
cfe0026
Merge branch 'alberto' of https://github.com/badyalberto/reactjs-todo…
Interna1ta Sep 27, 2021
fd74a81
filters positions
badyalberto Sep 27, 2021
16d5290
Merge branch 'alberto' of https://github.com/badyalberto/reactjs-todo…
Interna1ta Sep 27, 2021
8147129
added jsconfig.json
Interna1ta Sep 27, 2021
3d06e0d
organize
Interna1ta Sep 27, 2021
d9023b3
footer in dark-mode
Interna1ta Sep 27, 2021
566a299
restructure
badyalberto Sep 27, 2021
da6d5e7
dark mode with os settings preferences
Interna1ta Sep 27, 2021
785b5c4
changes
badyalberto Sep 27, 2021
b31939f
changes
badyalberto Sep 28, 2021
1fea224
changes
badyalberto Sep 28, 2021
88b2672
Merge branch 'main' of https://github.com/badyalberto/reactjs-todo-list
badyalberto Sep 28, 2021
062e27d
clean comments and console logs
Interna1ta Sep 28, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
168 changes: 84 additions & 84 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,84 +1,84 @@
module.exports = {
env: {
browser: true,
es2021: true,
jest: true,
"jest/globals": true,
},
extends: [
"airbnb",
"eslint:recommended",
"plugin:react/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:jsx-a11y/recommended",
"prettier",
"plugin:cypress/recommended",
],
parser: "@babel/eslint-parser",
parserOptions: {
ecmaVersion: 12,
sourceType: "module",
requireConfigFile: "false",
jsx: true,
},
plugins: [
"html",
"react",
"react-hooks",
"jsx-a11y",
"markdown",
"react-hooks",
"import",
"prettier",
],
settings: {
react: {
version: "detect",
},
jest: {
version: 26,
},
},
overrides: [
{
files: ["*.html"],
parser: "@html-eslint/parser",
extends: ["plugin:@html-eslint/recommended"],
},
{
files: ["src/**/*.test.js"],
plugins: ["jest"],
rules: {
"jest/expect-expect": "error",
},
extends: ["plugin:jest/recommended"],
},
],
rules: {
"prettier/prettier": [
"error",
{
endOfLine: "auto",
},
],
"react/jsx-filename-extension": "off",
"import/prefer-default-export": "off",
"prefer-destructuring": "off",
"object-shorthand": "off",
"react/jsx-props-no-spreading": "off",
"arrow-body-style": "off",
"no-underscore-dangle": "off",
"react/forbid-prop-types": "off",
"react/prop-types": "off",
"no-unused-expressions": "off",
"jsx-a11y/label-has-for": [
"error",
{
required: {
some: ["nesting", "id"],
},
},
],
},
};
// module.exports = {
// env: {
// browser: true,
// es2021: true,
// jest: true,
// "jest/globals": true,
// },
// extends: [
// "airbnb",
// "eslint:recommended",
// "plugin:react/recommended",
// "plugin:import/errors",
// "plugin:import/warnings",
// "plugin:jsx-a11y/recommended",
// "prettier",
// "plugin:cypress/recommended",
// ],
// parser: "@babel/eslint-parser",
// parserOptions: {
// ecmaVersion: 12,
// sourceType: "module",
// requireConfigFile: "false",
// jsx: true,
// },
// plugins: [
// "html",
// "react",
// "react-hooks",
// "jsx-a11y",
// "markdown",
// "react-hooks",
// "import",
// "prettier",
// ],
// settings: {
// react: {
// version: "detect",
// },
// jest: {
// version: 26,
// },
// },
// overrides: [
// {
// files: ["*.html"],
// parser: "@html-eslint/parser",
// extends: ["plugin:@html-eslint/recommended"],
// },
// {
// files: ["src/**/*.test.js"],
// plugins: ["jest"],
// rules: {
// "jest/expect-expect": "error",
// },
// extends: ["plugin:jest/recommended"],
// },
// ],
// rules: {
// "prettier/prettier": [
// "error",
// {
// endOfLine: "auto",
// },
// ],
// "react/jsx-filename-extension": "off",
// "import/prefer-default-export": "off",
// "prefer-destructuring": "off",
// "object-shorthand": "off",
// "react/jsx-props-no-spreading": "off",
// "arrow-body-style": "off",
// "no-underscore-dangle": "off",
// "react/forbid-prop-types": "off",
// "react/prop-types": "off",
// "no-unused-expressions": "off",
// "jsx-a11y/label-has-for": [
// "error",
// {
// required: {
// some: ["nesting", "id"],
// },
// },
// ],
// },
// };
1 change: 1 addition & 0 deletions .husky/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_
8 changes: 8 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"compilerOptions": {
"baseUrl": "src"
},
"include": [
"src"
]
}
Loading