paulodiovani / hacktoberrank

Hacktoberfest Rank
https://hacktoberrank-challenge.herokuapp.com/
MIT License
6 stars 17 forks source link

Improve fix linter for CI #35

Closed paulodiovani closed 4 years ago

paulodiovani commented 4 years ago

There are some changes we should do to improve our code lint.

This can be achieved by adding or changing:

// in package.json
"lint": "vue-cli-service lint --no-fix --max-warnings 0 src/ backend/ tests/"
// in .eslintrc.js
rules: {
  'no-console': 'warn',
  'no-debugger': 'warn',
  'prefer-const': 'error',
},
hirohaji commented 4 years ago

I'm working on this