0👍
For a typescript project:
.eslintrc.js
{
rules: {
'@typescript-eslint/camelcase': 'off'
}
}
- [Vuejs]-Deleting a single item from firebase using axios
- [Vuejs]-VueJS – Passing data from the created to mounted()
-2👍
If you don’t want eslint to check for variable casing then just turn it off with camelcase: 'off'
in your .eslintrc.js
.
- [Vuejs]-Vue.js Two-way Data Binding not working on Select Element
- [Vuejs]-Wierd bug with vuejs 2 router
Source:stackexchange.com