[Vuejs]-Vue-cli linting throwing camelcase warning when the rule is disabled

0👍

For a typescript project:

.eslintrc.js

{
  rules: {
    '@typescript-eslint/camelcase': 'off'
  }
}

-2👍

If you don’t want eslint to check for variable casing then just turn it off with camelcase: 'off' in your .eslintrc.js.

Leave a comment