Skip to content

Commit 1c4f2ac

Browse files
committedMay 8, 2024
Updated example application
Signed-off-by: Vikram Vaswani <[email protected]>
1 parent 872f5b4 commit 1c4f2ac

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+915
-16496
lines changed
 

‎.dockerignore

-2
This file was deleted.

‎.eslintrc.cjs

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/* eslint-env node */
2+
require('@rushstack/eslint-patch/modern-module-resolution')
3+
4+
module.exports = {
5+
root: true,
6+
'extends': [
7+
'plugin:vue/vue3-essential',
8+
'eslint:recommended',
9+
'@vue/eslint-config-typescript',
10+
'@vue/eslint-config-prettier/skip-formatting'
11+
],
12+
overrides: [
13+
{
14+
files: [
15+
'cypress/e2e/**/*.{cy,spec}.{js,ts,jsx,tsx}',
16+
'cypress/support/**/*.{js,ts,jsx,tsx}'
17+
],
18+
'extends': [
19+
'plugin:cypress/recommended'
20+
]
21+
}
22+
],
23+
parserOptions: {
24+
ecmaVersion: 'latest'
25+
}
26+
}

0 commit comments

Comments
 (0)