mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-06-27 11:20:40 -04:00
21 lines
504 B
JavaScript
21 lines
504 B
JavaScript
const { defineConfig } = require('eslint/config');
|
|
const js = require('@eslint/js');
|
|
const globals = require('globals');
|
|
|
|
module.exports = defineConfig([
|
|
{
|
|
files: ['**/*.js'],
|
|
extends: ['js/recommended'],
|
|
plugins: { js },
|
|
rules: {
|
|
'no-unused-vars': 'warn',
|
|
'no-undef': 'warn',
|
|
},
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.browser,
|
|
...globals.node,
|
|
},
|
|
},
|
|
},
|
|
]);
|