Skip to content

Commit

Permalink
deps: FY25Q2 dependency updates 🌲
Browse files Browse the repository at this point in the history
Includes upgrade to eslint v9
  • Loading branch information
stdavis authored and steveoh committed Oct 7, 2024
1 parent 16e1591 commit e5edb79
Show file tree
Hide file tree
Showing 5 changed files with 720 additions and 849 deletions.
11 changes: 0 additions & 11 deletions .eslintignore

This file was deleted.

35 changes: 35 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
// @ts-check

import eslint from '@eslint/js';
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended';
import globals from 'globals';
import tseslint from 'typescript-eslint';

export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
eslintPluginPrettierRecommended,
{
languageOptions: {
globals: {
...globals.node,
},

ecmaVersion: 12,
sourceType: 'module',
},
ignores: [
'node_modules/',
'dist/',
'.github/',
'package.json',
'package-lock.json',
'.emulator-data/',
'.husky/',
'.vscode/',
'coverage/',
'firebase-export-*/',
'public/assets/**',
],
},
);
9 changes: 0 additions & 9 deletions eslint.config.ts

This file was deleted.

Loading

0 comments on commit e5edb79

Please sign in to comment.