diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2016-11-04 16:49:07 +0100 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2016-11-09 15:45:43 +0100 |
commit | 3e176399718337e77e365461397628636c1e38a0 (patch) | |
tree | be4c4a58103a2a7cf1b82bd0448116200f200512 /server/sonar-web/config/webpack | |
parent | bb6cf5986337960db99e1fd7b7da3e691a305dbd (diff) | |
download | sonarqube-3e176399718337e77e365461397628636c1e38a0.tar.gz sonarqube-3e176399718337e77e365461397628636c1e38a0.zip |
disable eslint loader on fast build
Diffstat (limited to 'server/sonar-web/config/webpack')
-rw-r--r-- | server/sonar-web/config/webpack/webpack.config.fast.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/server/sonar-web/config/webpack/webpack.config.fast.js b/server/sonar-web/config/webpack/webpack.config.fast.js index 5fcfafc149f..0481d4fc6cd 100644 --- a/server/sonar-web/config/webpack/webpack.config.fast.js +++ b/server/sonar-web/config/webpack/webpack.config.fast.js @@ -19,4 +19,7 @@ */ var config = require('./webpack.config.base'); +// disable eslint loader +config.module.preLoaders = []; + module.exports = config; |