-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.mjs
50 lines (49 loc) · 1.17 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
48
49
50
// ESLint Configuration
import globals from "globals";
import tsParser from "@typescript-eslint/parser";
/** @type {import('eslint').Linter.Config} */
export default {
root: true,
env: {
browser: true,
es2021: true,
},
overrides: [
{
// Configuração para arquivos JavaScript
files: ["**/*.{js,mjs,cjs}"],
extends: ["airbnb-base"],
languageOptions: {
sourceType: "module",
globals: globals.browser,
},
},
{
// Configuração para arquivos TypeScript
files: ["**/*.ts"],
languageOptions: {
parser: tsParser,
sourceType: "module",
globals: globals.browser,
},
extends: [
"airbnb-base",
"plugin:@typescript-eslint/recommended",
"plugin:import/typescript",
],
plugins: ["@typescript-eslint"],
rules: {
// Exemplo: Customizações para evitar conflitos
"import/extensions": [
"error",
"ignorePackages",
{ js: "never", ts: "never" },
],
"@typescript-eslint/no-unused-vars": [
"warn",
{ argsIgnorePattern: "^_" },
],
},
},
],
};