mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-06-27 20:45:35 -04:00
basic functionality done
This commit is contained in:
parent
1c5e2d1055
commit
269d7784ab
19 changed files with 5917 additions and 4677 deletions
21
file-uploader/eslint.config.js
Normal file
21
file-uploader/eslint.config.js
Normal file
|
@ -0,0 +1,21 @@
|
|||
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,
|
||||
},
|
||||
},
|
||||
},
|
||||
]);
|
Loading…
Add table
Add a link
Reference in a new issue