我尝试在现有项目中使用eslint-config-react-app。我确实从githubpage复制了npm install命令:
npm install --save-dev eslint-config-react-app babel-eslint@7.1.1 eslint@3.16.1 eslint-plugin-flowtype@2.21.0 eslint-plugin-import@2.0.1 eslint-plugin-jsx-a11y@4.0.0 eslint-plugin-react@6.4.1
然后在项目的根目录中我创建了.eslint
文件:
{
"extends": "react-app"
}
然后我启动了webpack-dev-server但是我没有得到关于未使用的函数或变量的警告 - 没有。
package.json - 我用来启动app的命令:
"scripts": {
"dev": "webpack-dev-server --config webpack/dev.config.js --hot --inline --progress --colors --history-api-fallback --host 0.0.0.0 --port 8080"
},
dev.config.js放在项目的webpack
子目录中:
var webpack = require('webpack');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var CopyWebpackPlugin = require('copy-webpack-plugin');
var path = require('path');
module.exports = {
context: path.resolve(__dirname, '..'),
entry: [
'babel-polyfill',
'./src/client.js'
],
output: {
path: './public',
filename: 'bundle.js'
},
module: {
rules: [
{
test: /\.jsx?$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
plugins: ['transform-runtime', 'transform-class-properties', 'transform-decorators-legacy'],
presets: ['es2015', 'react', 'stage-0']
}
},
},
{
test: /\.scss$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: ['css-loader', 'sass-loader']
})
},
{
test: /\.woff(\?v=\d+\.\d+\.\d+)?$/,
use: "url?limit=10000&mimetype=application/font-woff"
},
{
test: /\.woff2(\?v=\d+\.\d+\.\d+)?$/,
use: "url?limit=10000&mimetype=application/font-woff"
},
{
test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/,
use: "url?limit=10000&mimetype=application/octet-stream"
},
{
test: /\.eot(\?v=\d+\.\d+\.\d+)?$/,
use: "file"
},
{
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
use: "url?limit=10000&mimetype=image/svg+xml"
},
]
},
resolve: {
modules: [
path.join(__dirname, 'src'),
'node_modules'
],
alias: {
components: path.resolve(__dirname, '../src/components'),
layouts: path.resolve(__dirname, '../src/layouts'),
pages: path.resolve(__dirname, '../src/pages'),
api: path.resolve(__dirname, '../src/api'),
},
extensions: ['.js', '.jsx']
},
devtool: 'inline-source-map',
plugins: [
new ExtractTextPlugin({
filename: 'style.css',
allChunks: true
}),
new CopyWebpackPlugin([
{from: './static', to: './public/static'}
])
]
};
答案 0 :(得分:0)
弹出后我抬头看create-react-app
配置,我做的是:
1:npm install --save-dev eslint-loader
2:将其添加到package.json
:
"eslintConfig": {
"extends": "react-app"
}
3:将加载程序添加到dev.config.js
:
{
test: /\.(js|jsx)$/,
enforce: 'pre',
exclude: /node_modules/,
use: 'eslint-loader'
},
.eslintrc
档案