diff --git a/front/.eslintrc.cjs b/front/.eslintrc.cjs index 6a2ecc376..bf893b886 100644 --- a/front/.eslintrc.cjs +++ b/front/.eslintrc.cjs @@ -22,6 +22,9 @@ module.exports = { plugins: [ 'vue' ], + ignorePatterns: [ + 'src/locales/*.json' + ], rules: { // NOTE: Nicer for the eye 'operator-linebreak': ['error', 'before'], @@ -55,7 +58,10 @@ module.exports = { '@typescript-eslint/no-this-alias': 'off', // TODO (wvffle): Remove after API Client - '@typescript-eslint/no-explicit-any': 'off' + '@typescript-eslint/no-explicit-any': 'off', + + // Configure TypeScript style + 'comma-dangle': ['error', 'never'] }, overrides: [ {