Skip to content

Commit

Permalink
Merge pull request #3 from jpraetorius/improve-structure-use-differen…
Browse files Browse the repository at this point in the history
…t-bundler

Move to Custom Elements and Vite
  • Loading branch information
simonharrer authored Jun 20, 2024
2 parents 766a569 + e0842e0 commit 87adf4c
Show file tree
Hide file tree
Showing 25 changed files with 3,473 additions and 4,104 deletions.
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
root = true

[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = tab
insert_final_newline = true
tab_width = 2
trim_trailing_whitespace = true
14 changes: 11 additions & 3 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
import globals from "globals";
import pluginJs from "@eslint/js";

import globals from "globals";

export default [
{languageOptions: { globals: globals.browser }},
{
ignores: ["**/templates.js", "**/*.config.[c]js"],
},
{
name: "project-options",
languageOptions: {
globals: globals.browser
},
files: ["src/**/*.js"],
},
pluginJs.configs.recommended,
];
Loading

0 comments on commit 87adf4c

Please sign in to comment.