diff options
author | Vitaly Takmazov | 2019-07-24 12:39:11 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:55 +0300 |
commit | 8ed84a3f69fb8577e0fa5a119d6adad2d218a95b (patch) | |
tree | 168c4c74fd286cf955d6b2d88edbb762ee7e9140 /vnext/webpack.config.js | |
parent | c766a3aabba6fda6d9e7e13e39f8780226989fe6 (diff) |
Disable eslint autofix
Diffstat (limited to 'vnext/webpack.config.js')
-rw-r--r-- | vnext/webpack.config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vnext/webpack.config.js b/vnext/webpack.config.js index e0c6855e..62042731 100644 --- a/vnext/webpack.config.js +++ b/vnext/webpack.config.js @@ -67,7 +67,7 @@ module.exports = (env, argv) => { exclude: /node_modules/, loader: 'eslint-loader', enforce: 'pre', - options: { failOnWarning: false, failOnError: true, fix: true }, + options: { failOnWarning: false, failOnError: true, fix: false }, }, { test: /\.js$/, |