23 lines
446 B
JavaScript
23 lines
446 B
JavaScript
// eslint.config.js
|
|
export default {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
es2021: true,
|
|
},
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:prettier/recommended',
|
|
],
|
|
parserOptions: {
|
|
ecmaVersion: 2021,
|
|
sourceType: 'module',
|
|
},
|
|
rules: {
|
|
// Add your custom rules here
|
|
'no-console': 'warn',
|
|
'no-unused-vars': 'warn',
|
|
// Example: 'semi': ['error', 'always']
|
|
},
|
|
};
|
|
|