File tree 5 files changed +68
-0
lines changed
5 files changed +68
-0
lines changed Original file line number Diff line number Diff line change
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-prettier/skip-formatting'
10
+ ] ,
11
+ parserOptions : {
12
+ ecmaVersion : 'latest'
13
+ }
14
+ }
Original file line number Diff line number Diff line change
1
+ # Logs
2
+ logs
3
+ * .log
4
+ npm-debug.log *
5
+ yarn-debug.log *
6
+ yarn-error.log *
7
+ pnpm-debug.log *
8
+ lerna-debug.log *
9
+
10
+ node_modules
11
+ .DS_Store
12
+ dist
13
+ dist-ssr
14
+ coverage
15
+ * .local
16
+
17
+ /cypress /videos /
18
+ /cypress /screenshots /
19
+
20
+ # Editor directories and files
21
+ .vscode /*
22
+ ! .vscode /extensions.json
23
+ .idea
24
+ * .suo
25
+ * .ntvs *
26
+ * .njsproj
27
+ * .sln
28
+ * .sw ?
29
+
30
+ * .tsbuildinfo
31
+
32
+ test-results /
33
+ playwright-report /
Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : " https://json.schemastore.org/prettierrc" ,
3
+ "semi" : false ,
4
+ "tabWidth" : 2 ,
5
+ "singleQuote" : true ,
6
+ "printWidth" : 100 ,
7
+ "trailingComma" : " none"
8
+ }
Original file line number Diff line number Diff line change
1
+ modules = ["vue-node-20:v2-20240116-2181bf7"]
2
+
3
+ [nix]
4
+ channel = "stable-23_11"
Original file line number Diff line number Diff line change
1
+ {
2
+ "recommendations" : [
3
+ " Vue.volar" ,
4
+ " Vue.vscode-typescript-vue-plugin" ,
5
+ " ms-playwright.playwright" ,
6
+ " dbaeumer.vscode-eslint" ,
7
+ " esbenp.prettier-vscode"
8
+ ]
9
+ }
You can’t perform that action at this time.
0 commit comments