Skip to content

Commit

Permalink
feat: add prettier plugin (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zangetsu101 authored Sep 6, 2023
1 parent e9f4400 commit 847f985
Show file tree
Hide file tree
Showing 4 changed files with 1,046 additions and 1,036 deletions.
4 changes: 3 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
"es2021": true,
"node": true
},
"plugins": ["prettier"],
"extends": [
"plugin:prettier/recommended",
"standard-with-typescript",
"prettier"
],
Expand All @@ -18,4 +20,4 @@
"ignorePatterns": [
"*.d.ts"
]
}
}
8 changes: 8 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"printWidth": 80,
"singleQuote": true,
"useTabs": false,
"tabWidth": 2,
"trailingComma": "none",
"semi": false
}
Loading

0 comments on commit 847f985

Please sign in to comment.