lint
This commit is contained in:
parent
f9765a9e7e
commit
803f53af7a
9
backend/eslint.config.mjs
Normal file
9
backend/eslint.config.mjs
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
import globals from "globals";
|
||||||
|
import pluginJs from "@eslint/js";
|
||||||
|
|
||||||
|
|
||||||
|
/** @type {import('eslint').Linter.Config[]} */
|
||||||
|
export default [
|
||||||
|
{languageOptions: { globals: globals.node }},
|
||||||
|
pluginJs.configs.recommended,
|
||||||
|
];
|
1092
backend/package-lock.json
generated
1092
backend/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -12,7 +12,9 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "nodemon src/main.mjs",
|
"start": "nodemon src/main.mjs",
|
||||||
"prod": "NODE_ENV=production node src/main.mjs",
|
"prod": "NODE_ENV=production node src/main.mjs",
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||||||
|
"format": "npx prettier . --write",
|
||||||
|
"lint": "npx eslint src"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@blackglory/better-sqlite3-migrations": "^0.1.19",
|
"@blackglory/better-sqlite3-migrations": "^0.1.19",
|
||||||
@ -27,6 +29,10 @@
|
|||||||
"morgan": "^1.10.0"
|
"morgan": "^1.10.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"nodemon": "^3.1.9"
|
"@eslint/js": "^9.22.0",
|
||||||
|
"eslint": "^9.22.0",
|
||||||
|
"globals": "^16.0.0",
|
||||||
|
"nodemon": "^3.1.9",
|
||||||
|
"prettier": "3.5.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,6 @@ import path from 'node:path';
|
|||||||
import { fileURLToPath } from 'node:url';
|
import { fileURLToPath } from 'node:url';
|
||||||
|
|
||||||
import { app } from './server.mjs';
|
import { app } from './server.mjs';
|
||||||
import db from './db.mjs';
|
|
||||||
import api from './api.mjs';
|
import api from './api.mjs';
|
||||||
import feed from './feed.mjs';
|
import feed from './feed.mjs';
|
||||||
import utils from './utils.mjs';
|
import utils from './utils.mjs';
|
||||||
|
Loading…
Reference in New Issue
Block a user