Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil23 committed May 17, 2024
1 parent 01b2444 commit 8b1862a
Show file tree
Hide file tree
Showing 69 changed files with 9,146 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
node_modules/
test-results/
lib/
dist/
playwright-report
summary.json

# IDE - VSCode
.vscode/*

# System Files
.DS_Store
Thumbs.db
21 changes: 21 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/* eslint-env node */
module.exports = {
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/stylistic",
"plugin:playwright/recommended"
],
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint"],
root: true,
rules: {
"@typescript-eslint/no-unused-vars": "warn",
"quotes": ["error", "single", { allowTemplateLiterals: true }],
"no-console": ["error", { allow: ["warn", "error"] }],
"comma-dangle": ["error", "always-multiline"],
"no-unused-vars": "warn",
"playwright/expect-expect": "off",
"playwright/no-standalone-expect": "off",
}
};
19 changes: 19 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
node_modules/
/.idea/
/.fleet/
/.run/
/coverage.data
/coverage/
/lib/
*.http
.vscode
.env
.env.local
._*
!**/.gitkeep
npm-debug.log
tsconfig.tsbuildinfo
.DS_Store
.DS_Store?
ehthumbs.db
Thumbs.db
Loading

0 comments on commit 8b1862a

Please sign in to comment.