Make sure we ignore all built code in common and functions

This commit is contained in:
Marshall Polaris 2022-07-02 17:56:47 -07:00
parent 8fdc44f7f3
commit 82e713423c
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
module.exports = {
plugins: ['lodash'],
extends: ['eslint:recommended'],
ignorePatterns: ['lib'],
env: {
browser: true,
node: true,

View File

@ -1,7 +1,7 @@
module.exports = {
plugins: ['lodash'],
extends: ['eslint:recommended'],
ignorePatterns: ['lib'],
ignorePatterns: ['dist', 'lib'],
env: {
node: true,
},