Adrià Vilanova MartÃnez | 673abe7 | 2024-05-11 12:21:01 +0200 | [diff] [blame] | 1 | const js = require('@eslint/js'); |
2 | const globals = require('globals'); | ||||
3 | |||||
4 | module.exports = [ | ||||
5 | js.configs.recommended, | ||||
6 | { | ||||
7 | languageOptions: { | ||||
8 | ecmaVersion: 'latest', | ||||
9 | sourceType: 'module', | ||||
10 | globals: { | ||||
11 | PRODUCTION: 'readonly', | ||||
12 | ...globals.browser, | ||||
13 | ...globals.webextensions, | ||||
14 | }, | ||||
15 | }, | ||||
16 | ignores: ['webpack.config.js'], | ||||
17 | }, | ||||
18 | { | ||||
19 | files: ['**/*.test.js', '**/*.test.mjs'], | ||||
20 | globals: { | ||||
21 | ...globals.jest, | ||||
22 | }, | ||||
23 | }, | ||||
24 | ]; |