From 7c469d69b4b7ecae38981d7a55d584b1f2608690 Mon Sep 17 00:00:00 2001 From: danstarns Date: Mon, 2 Sep 2024 19:51:18 -0700 Subject: [PATCH] lint* --- .eslintrc.js | 2 +- .github/dependabot.yml | 6 +++--- .prettierignore | 5 +++-- pnpm-workspace.yaml | 2 +- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 4c94328b5..26227a912 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -52,5 +52,5 @@ module.exports = { 'max-len': ['error', { code: 300 }], 'no-multiple-empty-lines': ['error', { max: 1, maxEOF: 1 }], }, - ignorePatterns: ['docs/api/*', 'dist/*'], + ignorePatterns: ['*/docs/api/*', 'dist'], }; diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 8276c44a5..6e267f599 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,7 +1,7 @@ version: 2 updates: - - package-ecosystem: "npm" - directory: "/packages" + - package-ecosystem: 'npm' + directory: '/' schedule: - interval: "weekly" + interval: 'weekly' diff --git a/.prettierignore b/.prettierignore index eb5f075d4..8ca336337 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,2 +1,3 @@ -./packages/core/docs/api/*.md -**/dist/ \ No newline at end of file +*.md +dist/ +pnpm-lock.yaml \ No newline at end of file diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index e32ff20f1..600b4bb48 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,2 +1,2 @@ packages: - - "packages/**" \ No newline at end of file + - 'packages/**'