I'm trying to eliminate all the semi-colons of my Vue project and I've searched how to do it with eslint command line. I've fount this pattern :
eslint --no-eslintrc --fix --rule 'rule definition here'
However, I've tried different implementations with no success :
1) eslint --no-eslintrc --fix --rule 'semi: false'
2) eslint --no-eslintrc --fix --rule 'semi: 0'
3) eslint --no-eslintrc --fix --rule 'semi: 0' .
3) eslint '**/*.{js,vue,ts}' --no-eslintrc --fix --rule 'semi: 0'
3) eslint --no-eslintrc --fix --rule 'semi: ['error','never']'
It seems I still didn't come across the right sintaxis.
Any idea on this?
Thank you in advance for your suggestions,
PS: I have errors like : ESLint: 8.57.1 No files matching the pattern "['error','never']'" were found. Please check for typing mistakes in the pattern. or ESLint: 8.57.1 No files matching the pattern "0'" were found. Please check for typing mistakes in the pattern.