1

Here is my project architecture :

Code Architecture

My .eslintignore :

/public/*
/test/*

These two folders are located at client/public && client/test but for some reason when starting eslint, it still lints my excluded files.

I am launching eslint through this command :

./node_modules/.bin/eslint . -c ../.eslintrc.js
Jaro
  • 1,587
  • 5
  • 20
  • 39

1 Answers1

0

try this

/client/public/*
/client/test/*
Jian Cui
  • 745
  • 1
  • 5
  • 10