Skip to content

Commit

Permalink
fix: lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Pradumnasaraf committed Jun 24, 2023
1 parent 101a61b commit 904e2e7
Show file tree
Hide file tree
Showing 15 changed files with 993 additions and 8 deletions.
23 changes: 23 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: "eslint:recommended",
overrides: [
{
env: {
node: true,
},
files: [".eslintrc.{js,cjs}"],
parserOptions: {
sourceType: "script",
},
},
],
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
},
rules: {},
};
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@

<!-- Add notes to reviewers if applicable -->

## 📷 Screenshots
## 📷 Screenshots
3 changes: 1 addition & 2 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"semi": true,
"tabWidth": 2,
"doubleQuotes": true,
"bracketSpacing": true
}
}
Loading

0 comments on commit 904e2e7

Please sign in to comment.