diff --git a/.eslintrc.js b/.eslintrc.js index 6cf82f4..e260818 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -28,6 +28,12 @@ module.exports = { variables: false, }, ], + 'no-param-reassign': [ + 'error', + { + props: false, + }, + ], 'no-mixed-operators': [ 'error', { diff --git a/gulp/publish-frontend.js b/gulp/publish-frontend.js index 9f6d957..95e3939 100644 --- a/gulp/publish-frontend.js +++ b/gulp/publish-frontend.js @@ -1,6 +1,4 @@ /* eslint-disable import/no-extraneous-dependencies */ -const fs = require('fs'); - const gulp = require('gulp'); const concat = require('gulp-concat'); const terser = require('gulp-terser');