File tree 4 files changed +50
-0
lines changed
4 files changed +50
-0
lines changed Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ root : true ,
3
+ env : {
4
+ node : true ,
5
+ } ,
6
+ extends : [
7
+ 'plugin:vue/essential' ,
8
+ '@vue/airbnb' ,
9
+ ] ,
10
+ rules : {
11
+ 'no-console' : process . env . NODE_ENV === 'production' ? 'error' : 'off' ,
12
+ 'no-debugger' : process . env . NODE_ENV === 'production' ? 'error' : 'off' ,
13
+ } ,
14
+ parserOptions : {
15
+ parser : 'babel-eslint' ,
16
+ } ,
17
+ } ;
Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ presets : [
3
+ '@vue/app' ,
4
+ ] ,
5
+ } ;
Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ moduleFileExtensions : [
3
+ 'js' ,
4
+ 'jsx' ,
5
+ 'json' ,
6
+ 'vue' ,
7
+ ] ,
8
+ transform : {
9
+ '^.+\\.vue$' : 'vue-jest' ,
10
+ '.+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$' : 'jest-transform-stub' ,
11
+ '^.+\\.jsx?$' : 'babel-jest' ,
12
+ } ,
13
+ moduleNameMapper : {
14
+ '^@/(.*)$' : '<rootDir>/src/$1' ,
15
+ } ,
16
+ snapshotSerializers : [
17
+ 'jest-serializer-vue' ,
18
+ ] ,
19
+ testMatch : [
20
+ '**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)' ,
21
+ ] ,
22
+ testURL : 'http://localhost/' ,
23
+ } ;
Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ env : {
3
+ jest : true ,
4
+ } ,
5
+ } ;
You can’t perform that action at this time.
0 commit comments