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
@@ -14,4 +14,4 @@
"devDependencies": {
"eslint": "^8.57.0"
}
}
}
@@ -9,4 +9,4 @@
"devDependencies": {
"eslint": "^8.57.0"
}
}
}
+3 -3
View File
@@ -1,9 +1,9 @@
/** @type {import("eslint").Linter.Config} */
module.exports = {
root: true,
ignorePatterns: [".eslintrc.cjs"],
extends: ["@repo/eslint-config/index.js"],
parser: "@typescript-eslint/parser",
ignorePatterns: ['.eslintrc.cjs'],
extends: ['@repo/eslint-config/index.js'],
parser: '@typescript-eslint/parser',
parserOptions: {
project: true,
},