feat: restructure ESLint and TypeScript configurations into a new configs directory

This commit is contained in:
Firman Ramdhani
2026-01-09 09:58:01 +07:00
parent 010821e662
commit 7a6a8b710f
11 changed files with 18 additions and 18 deletions
+19
View File
@@ -0,0 +1,19 @@
module.exports = {
env: {
node: true,
},
parser: "@typescript-eslint/parser",
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
],
plugins: ["@typescript-eslint"],
parserOptions: {
sourceType: "module",
ecmaVersion: 2020,
},
rules: {
"@typescript-eslint/no-non-null-assertion": "off",
},
};