Skip to content

Commit

Permalink
skip linting for config files for the two packages that don't depend …
Browse files Browse the repository at this point in the history
…on dev-tool
  • Loading branch information
jeremymeng committed Aug 23, 2024
1 parent 5adb09d commit c34a1c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions common/tools/eslint-plugin-azure-sdk/eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import eslint from "@eslint/js";
import typescriptEsLint from "typescript-eslint";

export default typescriptEsLint.config(
{ ignores: ["*.config.{js,cjs,mjs}"] },
{
languageOptions: {
parserOptions: {
Expand Down
3 changes: 2 additions & 1 deletion common/tools/vite-plugin-browser-test-map/eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import eslintJs from "@eslint/js";
import tsEsLint from "typescript-eslint";

export default tsEsLint.config(
{ ignores: ["*.config.{js,cjs,mjs}"] },
{
languageOptions: {
parserOptions: {
Expand All @@ -12,5 +13,5 @@ export default tsEsLint.config(
},
eslintJs.configs.recommended,
...tsEsLint.configs.recommended,
tsEsLint.configs.eslintRecommended
tsEsLint.configs.eslintRecommended,
);

0 comments on commit c34a1c6

Please sign in to comment.