Skip to content

Commit 69dade8

Browse files
committed
Add eslint
1 parent 2b792e3 commit 69dade8

13 files changed

+5012
-38
lines changed

.babelrc

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
{
22
"presets": ["es2015", "stage-2"],
33
"plugins": ["transform-runtime"],
4-
"comments": false,
5-
"env": {
6-
"test": {
7-
"plugins": [ "istanbul" ]
8-
}
9-
}
4+
"comments": false
105
}

.eslintrc.js

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
module.exports = {
2+
env: {
3+
"browser": true,
4+
},
5+
root: true,
6+
parser: 'babel-eslint',
7+
parserOptions: {
8+
sourceType: 'module'
9+
},
10+
extends: 'airbnb-base',
11+
// required to lint *.vue files
12+
plugins: [
13+
'html'
14+
],
15+
// check if imports actually resolve
16+
'settings': {
17+
'import/resolver': {
18+
'webpack': {
19+
'config': 'build/webpack.base.conf.js'
20+
}
21+
}
22+
},
23+
// add your custom rules here
24+
'rules': {
25+
// don't require .vue extension when importing
26+
'import/extensions': ['error', 'always', {
27+
'js': 'never',
28+
'vue': 'never'
29+
}],
30+
'import/no-dynamic-require': 0,
31+
// allow debugger during development
32+
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
33+
"no-use-before-define": ["error", { "functions": false,}],
34+
"no-unused-vars": 0,
35+
36+
"no-console": 0,
37+
"no-underscore-dangle": 0,
38+
"arrow-parens": 0,
39+
"no-param-reassign": 0,
40+
"no-unused-expressions": 0,
41+
"padded-blocks": 0,
42+
"prefer-const": 1,
43+
"linebreak-style":0,
44+
"max-len":0
45+
}
46+
}

build/build.js

-7
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,6 @@ var webpack = require('webpack')
1010

1111
var webpackConfig = require('./webpack.prod.conf');
1212

13-
if (env.NODE_ENV_EXAMPLE === 'y') {
14-
webpackConfig.entry = {
15-
main: './example/main.js'
16-
};
17-
env.NODE_ENV_EXAMPLE === 'n';
18-
}
19-
2013
console.log(
2114
' Tip:\n' +
2215
' Built files are meant to be served over an HTTP server.\n' +

build/webpack.base.conf.js

+26
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ var cssSourceMapProd = (env === 'production' && config.build.productionSourceMap
1212
var useCssSourceMap = cssSourceMapDev || cssSourceMapProd
1313

1414
module.exports = {
15+
entry: {
16+
main: './example/main.js'
17+
},
1518
output: {
1619
path: config.build.assetsRoot,
1720
publicPath: process.env.NODE_ENV === 'production' ? config.build.assetsPublicPath : config.dev.assetsPublicPath,
@@ -32,6 +35,26 @@ module.exports = {
3235
fallback: [path.join(__dirname, '../node_modules')]
3336
},
3437
module: {
38+
preLoaders: [
39+
{
40+
test: /\.vue$/,
41+
loader: 'eslint',
42+
include: [
43+
path.join(projectRoot, 'src'),
44+
path.join(projectRoot, 'example')
45+
],
46+
exclude: /node_modules/
47+
},
48+
{
49+
test: /\.js$/,
50+
loader: 'eslint',
51+
include: [
52+
path.join(projectRoot, 'src'),
53+
path.join(projectRoot, 'example')
54+
],
55+
exclude: /node_modules/
56+
}
57+
],
3558
loaders: [
3659
{
3760
test: /\.vue$/,
@@ -68,6 +91,9 @@ module.exports = {
6891
}
6992
]
7093
},
94+
eslint: {
95+
formatter: require('eslint-friendly-formatter')
96+
},
7197
vue: {
7298
loaders: utils.cssLoaders({ sourceMap: useCssSourceMap }),
7399
postcss: [

build/webpack.dev.conf.js

+3-6
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,11 @@ var HtmlWebpackPlugin = require('html-webpack-plugin')
77
var FriendlyErrors = require('friendly-errors-webpack-plugin')
88

99
// add hot-reload related code to entry chunks
10-
// Object.keys(baseWebpackConfig.entry).forEach(function (name) {
11-
// baseWebpackConfig.entry[name] = ['./build/dev-client'].concat(baseWebpackConfig.entry[name])
12-
// })
10+
Object.keys(baseWebpackConfig.entry).forEach(function (name) {
11+
baseWebpackConfig.entry[name] = ['./build/dev-client'].concat(baseWebpackConfig.entry[name])
12+
})
1313

1414
module.exports = merge(baseWebpackConfig, {
15-
entry: {
16-
main: './example/main.js'
17-
},
1815
module: {
1916
loaders: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap })
2017
},

build/webpack.prod.conf.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ var HtmlWebpackPlugin = require('html-webpack-plugin')
99
var env = config.build.env
1010

1111
var webpackConfig = merge(baseWebpackConfig, {
12-
entry: {
13-
'swipe': './src/main.js',
14-
},
1512
module: {
1613
loaders: utils.styleLoaders({ sourceMap: config.build.productionSourceMap, extract: true })
1714
},
@@ -102,4 +99,8 @@ if (config.build.productionGzip) {
10299
)
103100
}
104101

102+
delete webpackConfig.entry;
103+
webpackConfig.entry = {
104+
'swipe': './src/main.js',
105+
}
105106
module.exports = webpackConfig

dist/swipe.js

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/App.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ export default {
1919
mounted() {
2020
document.getElementById('button').onclick = () => {
2121
this.index = this.index === 1 ? 0 : this.index + 1;
22-
}
23-
}
22+
};
23+
},
2424
};
2525
</script>
2626

example/main.js

+20-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,31 @@
11
import Vue from 'vue';
2+
import { Swipe, SwipeItem } from '../src/main';
3+
// import { Swipe, SwipeItem } from 'c-swipe';
24
import App from './App';
3-
import dist from '../dist/swipe.js'
45

5-
import 'c-swipe/dist/swipe.css';
6-
import { Swipe, SwipeItem } from 'c-swipe';
7-
// import { Swipe, SwipeItem } from '../src/main.js';
6+
// require('c-swipe/dist/swipe.css');
7+
8+
console.log(process.env);
9+
10+
/* eslint-disable global-require */
11+
// if (process.env === 'test') {
12+
// require('c-swipe/dist/swipe.css');
13+
// }
14+
15+
/* eslint-disable global-require */
16+
// const Swipe = process.env === 'test'
17+
// ? require('../dist/swipe').Swipe
18+
// : require('../src/main').Swipe;
19+
//
20+
// const SwipeItem = process.env === 'test'
21+
// ? require('../dist/swipe').SwipeItem
22+
// : require('../src/main').SwipeItem;
823

924
Vue.component('swipe', Swipe);
1025
Vue.component('swipe-item', SwipeItem);
1126

1227
const vm = new Vue({
1328
el: '#app',
1429
template: '<App/>',
15-
components: { App }
30+
components: { App },
1631
});

0 commit comments

Comments
 (0)