Skip to content

Commit

Permalink
code climate exclude
Browse files Browse the repository at this point in the history
  • Loading branch information
farahat80 committed Jun 2, 2017
1 parent 7fde77f commit e76a748
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
engines:
eslint:
enabled: true
checks:
import/extensions:
enabled: false
csslint:
enabled: true
duplication:
Expand Down
5 changes: 2 additions & 3 deletions webpack.config.dev.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const webpack = require('webpack');

module.exports = {
entry: {
Expand All @@ -17,7 +16,7 @@ module.exports = {
loader: 'babel'
}, {
test: /\.css$/,
loader: ExtractTextPlugin.extract("css-loader!autoprefixer-loader")
loader: ExtractTextPlugin.extract('css-loader!autoprefixer-loader')
}, {
test: /\.scss$/,
loader: ExtractTextPlugin.extract('css!sass')
Expand All @@ -33,4 +32,4 @@ module.exports = {
inject: 'body'
})
]
};
};

0 comments on commit e76a748

Please sign in to comment.