-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.mjs
47 lines (45 loc) · 1.01 KB
/
eslint.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import pluginJs from '@eslint/js';
import eslintConfigPrettier from 'eslint-config-prettier';
import globals from 'globals';
import tseslint from 'typescript-eslint';
/** @type {import('eslint').Linter.Config[]} */
export default [
{ files: ['**/*.{js,mjs,cjs,ts}'] },
{ languageOptions: { globals: globals.browser } },
pluginJs.configs.recommended,
...tseslint.configs.recommended,
{
ignores: [
// Directories
'.coverage_artifacts/',
'.coverage_cache/',
'.coverage_contracts/',
'.husky/',
'artifacts/',
'build/',
'cache/',
'contracts/',
'coverage/',
'dependencies/',
'dist/',
'foundry-cache/',
'foundry-out/',
'node_modules/',
'outputs/',
// Files
'*.env',
'*.log',
'.DS_Store',
'.pnp.*',
'coverage.json',
'package-lock.json',
'pnpm-lock.yaml',
'repos',
'reports',
'scope.txt',
'soldeer.lock',
'yarn.lock',
],
},
eslintConfigPrettier,
];