Skip to content

Commit

Permalink
Changes in style, reformat, extracted some code into extra files
Browse files Browse the repository at this point in the history
  • Loading branch information
Flori-991 committed Jun 20, 2023
1 parent 2155baf commit c641a9c
Show file tree
Hide file tree
Showing 13 changed files with 1,183 additions and 165 deletions.
5 changes: 5 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[*]
end_of_line = lf
indent_style = space
indent_size = 2
tab_width = 2
14 changes: 0 additions & 14 deletions .eslintrc.cjs

This file was deleted.

37 changes: 37 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"overrides": [],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
]
}
}
Binary file added .prettierignore
Binary file not shown.
1 change: 1 addition & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
Loading

0 comments on commit c641a9c

Please sign in to comment.