linter ignorer

This commit is contained in:
Nikita Krupin
2021-12-12 17:51:08 -05:00
parent 7cf55c76e4
commit 8de9dfc9df
2 changed files with 11 additions and 1 deletions

10
Website/.eslintignore Normal file
View File

@@ -0,0 +1,10 @@
# js vendor file with import/require
assets/vendor/**
# static vendor file . use with nuxt.config.js script
static/**
# dependencies
node_modules
# Nuxt build
.nuxt
# Nuxt generate
dist

View File

@@ -7,7 +7,7 @@
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --fix --ext .js,.vue ./"
"lint": "eslint --fix --ext .js,.vue --ignore-path .eslintignore ."
},
"dependencies": {
"core-js": "^3.15.1",