summaryrefslogtreecommitdiff
path: root/eslint.config.js
blob: e8dde1ccc2554b4f938c4b0b94c50cc18a31cbb3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import prettier from 'eslint-plugin-prettier/recommended';
import js from '@eslint/js';
import globals from 'globals';

export default [
  {
    languageOptions: {
      globals: {
        ...globals.browser,
      },
    },
  },
  js.configs.recommended,
  prettier,
];