Skip to content

Commit

Permalink
feat: added eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
51L3N7-X committed Mar 15, 2024
1 parent 95ec159 commit 429be8e
Show file tree
Hide file tree
Showing 5 changed files with 3,967 additions and 36 deletions.
14 changes: 14 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module.exports = {
extends: ["airbnb-base", "plugin:prettier/recommended", "airbnb"],
rules: {
"prettier/prettier": [
"error",
{
doubleQuote: true,
endOfLine: "auto",
},
],
"linebreak-style": 0,
quotes: "off",
},
};
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"semi": true,
"trailingComma": "all"
}
Loading

0 comments on commit 429be8e

Please sign in to comment.