You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "A collection of terms and concepts used in the ESLint React."
4
+
---
5
+
6
+
## L
7
+
8
+
### Language Config
9
+
10
+
The configuration file specifies the root files and the options for the features provided by the language service.
11
+
12
+
ESLint React uses the Language Config to provide information (e.g. [JSX Transform](/docs/configuration/configure-language-config#jsx-transform)) about the code it is linting.
13
+
14
+
For TypeScript or JavaScript files, the Language Config are typically named `tsconfig.json` or `jsconfig.json` and are located in the root of a project.
15
+
16
+
For MDX files, the Language Config is the `"mdx"` property in the `tsconfig.json` file.
17
+
18
+
### Language Preference
19
+
20
+
Language Preference is a set of rules that represents the user's preference for how code should be formatted.
21
+
22
+
ESLint React provides a way to customize the code style used in the internal fixer's output through Language Preference.
0 commit comments