-
Notifications
You must be signed in to change notification settings - Fork 1
/
eslint.config.mjs
49 lines (38 loc) · 1.49 KB
/
eslint.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import globals from 'globals';
import pluginJs from '@eslint/js';
import tseslint from 'typescript-eslint';
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended';
export default [
{
files: ['**/*.{js,mjs,cjs,ts}'],
rules: {
// Enforce 2-space indentation
indent: ['error', 2],
// Enforce semicolons at the end of statements
semi: ['error', 'always'],
// Prefer single quotes for strings
quotes: ['error', 'single', { avoidEscape: true }],
// Enforce consistent spacing before function parentheses
'space-before-function-paren': ['error', 'never'],
// Disallow unused variables
'no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
// Prefer `const` over `let` where possible
'prefer-const': 'error',
// Disallow `console` except for warning or error messages
'no-console': ['warn', { allow: ['warn', 'error'] }],
// Encourage using `arrow functions` where appropriate
'prefer-arrow-callback': 'error',
// Disallow `var` (use `let` or `const`)
'no-var': 'error',
// Enforce consistent spacing around operators
'space-infix-ops': 'error',
// Encourage the use of strict equality (`===`)
eqeqeq: ['error', 'always'],
// '@typescript-eslint/no-explicit-any': 'off',
},
},
{ languageOptions: { globals: globals.browser } },
pluginJs.configs.recommended,
...tseslint.configs.recommended,
eslintPluginPrettierRecommended,
];