diff --git a/.eslintrc.json b/.eslintrc.json --- a/.eslintrc.json +++ b/.eslintrc.json @@ -53,4 +53,5 @@ "import/ignore": ["react-native"], "import/internal-regex": "^(lib|native|keyserver|web)/" } + // "ignorePatterns": ["**/webpack.config.cjs"] } diff --git a/landing/webpack.config.cjs b/landing/webpack.config.cjs --- a/landing/webpack.config.cjs +++ b/landing/webpack.config.cjs @@ -1,3 +1,6 @@ +/* eslint-disable no-undef */ +/* eslint-disable flowtype/require-valid-file-annotation */ + const path = require('path'); const AssetsPlugin = require('assets-webpack-plugin'); diff --git a/web/webpack.config.cjs b/web/webpack.config.cjs --- a/web/webpack.config.cjs +++ b/web/webpack.config.cjs @@ -1,3 +1,6 @@ +/* eslint-disable no-undef */ +/* eslint-disable flowtype/require-valid-file-annotation */ + const path = require('path'); const AssetsPlugin = require('assets-webpack-plugin');