Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 95a4022

Browse files
author
Javier Diaz
committedApr 7, 2019
chore: updated configuration
1 parent 7c8bd33 commit 95a4022

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed
 

‎.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/dist
2+
/node_modules

‎.eslintrc.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ module.exports = {
44
node: true,
55
},
66
extends: [
7-
'plugin:vue/essential',
8-
'@vue/airbnb',
7+
'plugin:vue/recommended',
8+
'airbnb-base',
99
],
1010
rules: {
1111
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',

‎babel.config.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
module.exports = {
2-
presets: [
3-
'@vue/app',
4-
],
2+
presets: ['bili/babel'],
53
};

‎jest.config.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ module.exports = {
1010
'.+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$': 'jest-transform-stub',
1111
'^.+\\.jsx?$': 'babel-jest',
1212
},
13-
moduleNameMapper: {
14-
'^@/(.*)$': '<rootDir>/src/$1',
15-
},
1613
snapshotSerializers: [
1714
'jest-serializer-vue',
1815
],

0 commit comments

Comments
 (0)
Please sign in to comment.