Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions auth/.eslintignore

This file was deleted.

14 changes: 0 additions & 14 deletions auth/.eslintrc.js

This file was deleted.

1 change: 1 addition & 0 deletions auth/.npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ test-results.xml
.eslintignore
.eslintrc.js
*.tsbuildinfo
eslint.config.mjs
3 changes: 2 additions & 1 deletion auth/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"search.exclude": {
"dist": true,
"out": true,
"**/node_modules": true
"**/node_modules": true,
"**/.vscode-test": true,
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
Expand Down
12 changes: 12 additions & 0 deletions auth/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE.md in the project root for license information.
*--------------------------------------------------------------------------------------------*/

import { azExtEslintStrictTypeChecked, lazyImportAzurePackages } from '@microsoft/vscode-azext-eng/eslint'; // Other configurations exist
import { defineConfig } from 'eslint/config';

export default defineConfig([
azExtEslintStrictTypeChecked,
lazyImportAzurePackages,
]);
Loading