File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ extends : [
3
+ 'eslint:recommended' ,
4
+ 'plugin:@typescript-eslint/eslint-recommended' ,
5
+ 'plugin:@typescript-eslint/recommended' ,
6
+ 'plugin:vue/vue3-recommended' ,
7
+ 'plugin:prettier/recommended' ,
8
+ 'plugin:cypress/recommended' ,
9
+ ] ,
10
+ globals : {
11
+ browser : true ,
12
+ tofinoJS : true ,
13
+ } ,
14
+ parserOptions : {
15
+ parser : '@typescript-eslint/parser' ,
16
+ } ,
17
+ plugins : [ '@typescript-eslint' ] ,
18
+ env : {
19
+ 'vue/setup-compiler-macros' : true ,
20
+ node : true ,
21
+ es2021 : true ,
22
+ es6 : true ,
23
+ } ,
24
+ } ;
Original file line number Diff line number Diff line change 6
6
! .env
7
7
! .gitkeep
8
8
! .gitattributes
9
- ! .eslintrc.js
10
9
! .stylelintrc.js
11
10
! .env
12
11
! .prettierrc.js
13
12
! .git-ftp-ignore
14
13
! .github
15
14
! .npmrc
16
15
! .prettierignore
16
+ ! .eslintrc.cjs
17
17
18
18
# ignore node/grunt dependency directories
19
19
node_modules /
You can’t perform that action at this time.
0 commit comments