Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
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
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
index.html
**/node_modules/**
25 changes: 25 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"root": true,
"env": {
"browser": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"extends": ["airbnb-base", "prettier"],

"rules": {
"array-callback-return": [
"error",
{ "allowImplicit": true, "checkForEach": true }
],
"curly": ["error", "all"],
"no-new": "off",
"import/extensions": "off",
"no-console": ["warn", { "allow": ["error"] }],
"consistent-return": "off",
"class-methods-use-this": "off"
}
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
**/node_modules/**
.env.js
10 changes: 10 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"tabWidth": 2,
"semi": true,
"bracketSpacing": true,
"singleQuote": true,
"arrowParens": "avoid",
"quoteProps": "as-needed",
"trailingComma": "es5",
"printWidth": 85
}
15 changes: 15 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Note-Taking-Management</title>
<link rel="stylesheet" href="/src/assets/reset.css" />
<link rel="stylesheet" href="/src/assets/style.css" />
</head>
<body>
<main id="app"></main>
<script src="/src/index.js" type="module"></script>
</body>
</html>
Loading