-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy patheslint.config.mjs
More file actions
101 lines (91 loc) · 3.78 KB
/
Copy patheslint.config.mjs
File metadata and controls
101 lines (91 loc) · 3.78 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import js from "@eslint/js";
import tseslint from "@typescript-eslint/eslint-plugin";
import tsParser from "@typescript-eslint/parser";
import unusedImports from "eslint-plugin-unused-imports";
import reactPlugin from "eslint-plugin-react";
import reactNativePlugin from "eslint-plugin-react-native";
import reactHooksPlugin from "eslint-plugin-react-hooks";
import { createRequire } from 'module';
const require = createRequire(import.meta.url);
export default [
{ ignores: ["node_modules/", "dist/", "build/", ".next/", "coverage/", "*.config.js", "*.config.mjs", ".expo/", "android/", "ios/"] },
js.configs.recommended,
{
files: ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx"],
languageOptions: {
parser: tsParser,
parserOptions: {
ecmaFeatures: { jsx: true },
ecmaVersion: "latest",
sourceType: "module"
}
},
plugins: {
"@typescript-eslint": tseslint,
"unused-imports": unusedImports,
"react": reactPlugin,
"react-native": reactNativePlugin,
"react-hooks": reactHooksPlugin
},
settings: {
react: { version: "detect" }
},
rules: {
// --- Code quality ---
"prefer-const": "error",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": ["warn", { args: "all", argsIgnorePattern: "^_", varsIgnorePattern: "^_" }],
"unused-imports/no-unused-imports": "error",
// --- Formatting (ESLint is the sole formatter — no Prettier) ---
"no-trailing-spaces": "error",
"eol-last": ["error", "always"],
"quotes": ["error", "double", { avoidEscape: true, allowTemplateLiterals: true }],
"semi": ["error", "always"],
"comma-dangle": ["error", "never"],
"indent": ["warn", 2, { SwitchCase: 1 }],
"comma-spacing": ["error", { before: false, after: true }],
"key-spacing": ["error", { beforeColon: false, afterColon: true, mode: "strict" }],
"keyword-spacing": ["error", { before: true, after: true }],
"space-infix-ops": "error",
"no-multi-spaces": ["error", { ignoreEOLComments: true }],
"block-spacing": ["error", "always"],
// --- Compact / single-line formatting ---
"brace-style": ["error", "1tbs", { allowSingleLine: true }],
curly: ["error", "multi-line"],
"nonblock-statement-body-position": ["error", "beside"],
// Objects
"object-curly-spacing": ["error", "always"],
"object-curly-newline": ["error", {
ObjectExpression: { multiline: true },
ObjectPattern: { multiline: true },
ImportDeclaration: { multiline: true },
ExportDeclaration: { multiline: true }
}],
"object-property-newline": ["error", { allowAllPropertiesOnSameLine: true }],
// Arrays
"array-bracket-spacing": ["error", "never"],
"array-bracket-newline": ["error", { multiline: true, minItems: 8 }],
"array-element-newline": ["error", { ArrayExpression: "consistent", ArrayPattern: { minItems: 8 } }],
// Functions
"function-paren-newline": ["error", "consistent"],
"function-call-argument-newline": ["error", "consistent"],
// Generous line length
"max-len": ["warn", {
code: 250,
ignoreStrings: true,
ignoreTemplateLiterals: true,
ignoreComments: true,
ignoreUrls: true,
ignoreRegExpLiterals: true
}],
// --- React Native specific ---
"react-native/no-inline-styles": "off",
"react-hooks/exhaustive-deps": "off",
"react/react-in-jsx-scope": "off",
"react/display-name": "off",
// --- TypeScript overrides (avoid conflicts with TS-aware rules) ---
"no-undef": "off",
"no-unused-vars": "off"
}
}
];