Skip to content

Commit

Permalink
chore: bootstrapping library
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe committed Jan 25, 2024
1 parent 413e621 commit a74b9d4
Show file tree
Hide file tree
Showing 15 changed files with 13,713 additions and 8 deletions.
18 changes: 18 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution')

module.exports = {
root: true,
'extends': [
'@vue/typescript/recommended',
'plugin:vue/vue3-recommended',
'@vue/eslint-config-typescript',
'@vue/eslint-config-prettier/skip-formatting'
],
rules: {
"@typescript-eslint/no-explicit-any": "off",
},
parserOptions: {
ecmaVersion: 'latest'
}
}
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
# nodejs
/node_modules

# Windows LFS
*:Zone.Identifier

# Root Pipfile
/Pipfile
/Pipfile.lock

# Coverage information.
/coverage
.coverage
coverage.lcov

Expand Down
3 changes: 3 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "0.4.0"
}
1 change: 1 addition & 0 deletions env.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/// <reference types="vite/client" />
Loading

0 comments on commit a74b9d4

Please sign in to comment.