diff --git a/.gitignore b/.gitignore index 78cc2319772..b5ad54840a5 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,9 @@ css/ # Dependencies node_modules +# Local agent workspaces +.agents + # Gatsby public/ diff --git a/.prettierignore b/.prettierignore index bcb3ba68f18..a7d223c884b 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,4 +1,5 @@ .changeset +.agents packages/react/CHANGELOG.md dist storybook-static diff --git a/.stylelintignore b/.stylelintignore index 7beb510200b..a251d23afb5 100644 --- a/.stylelintignore +++ b/.stylelintignore @@ -1,4 +1,5 @@ docs/public/**/*.css +.agents/**/*.css **/dist/**/*.css **/.next/**/*.css **/storybook-static/** diff --git a/eslint.config.mjs b/eslint.config.mjs index 37c4c0adeb0..f014cfe57a3 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -35,6 +35,7 @@ const github = githubPlugin.getFlatConfigs() */ const config = defineConfig([ globalIgnores([ + '.agents/**/*', '**/.cache', 'coverage/**/*', 'docs/public/**/*', diff --git a/package.json b/package.json index a05901677fb..0ede5a4c0fd 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,7 @@ "lint:css": "stylelint --rd -q --cache '**/*.css'", "lint:css:fix": "npm run lint:css -- --fix", "lint:fix": "npm run lint -- --fix", - "lint:md": "markdownlint-cli2 \"**/*.{md,mdx}\" \"!.github\" \"!.changeset\" \"!**/node_modules/**\" \"!**/CHANGELOG.md\"", + "lint:md": "markdownlint-cli2 \"**/*.{md,mdx}\" \"!.github\" \"!.changeset\" \"!.agents\" \"!**/node_modules/**\" \"!**/CHANGELOG.md\"", "test": "vitest", "test:type-check": "tsc --noEmit", "test:update": "npm run test -- -u",