eslint-plugin-prefer-arrow-functions
eslint-plugin-prefer-arrow-functions copied to clipboard
Functions as Object properties
Description
Create a .js file in an environment with eslint and eslint-plugin-prefer-arrow-functions
create an object with a function as a property:
const myObj = {
dummyMethod(){
// ...
}
}
The plugin will mark (warn / error) the function.
In some cases, we'd like to use functions as object properties.
In my case, I use Vuejs 2, and each component has this error for the data property:
export default {
data(){
return {...}
}
}
Suggested Solution
It could be great if there's an option to add a rule to the rule-section for prop functions
Any news about this important feature ?
Released in 3.6.0