|
1 | 1 | {
|
2 | | - // Enable the ESlint flat config support |
3 | | - "eslint.experimental.useFlatConfig": true, |
| 2 | + // For VS Code ESLint works |
| 3 | + "eslint.runtime": "node", |
4 | 4 |
|
5 | 5 | // Disable the default formatter, use eslint instead
|
6 | 6 | "prettier.enable": false,
|
|
12 | 12 | "source.organizeImports": "never"
|
13 | 13 | },
|
14 | 14 |
|
15 | | - // Disable the MD033 rule |
16 | | - "markdownlint.config": { |
17 | | - "default": true, |
18 | | - "MD033": false, |
19 | | - "MD041": false |
20 | | - }, |
21 | | - |
22 | 15 | // Silent the stylistic rules in you IDE, but still auto fix them
|
23 | 16 | "eslint.rules.customizations": [
|
24 | 17 | { "rule": "style/*", "severity": "off" },
|
|
43 | 36 | "markdown",
|
44 | 37 | "json",
|
45 | 38 | "jsonc",
|
46 | | - "yaml" |
| 39 | + "yaml", |
| 40 | + "toml", |
| 41 | + "xml", |
| 42 | + "gql", |
| 43 | + "graphql", |
| 44 | + "astro", |
| 45 | + "css", |
| 46 | + "less", |
| 47 | + "scss", |
| 48 | + "pcss", |
| 49 | + "postcss" |
47 | 50 | ],
|
48 | 51 |
|
49 | 52 | // Specify the UI library you need to prompt
|
|
58 | 61 | "i18n-ally.localesPaths": [
|
59 | 62 | "src/locales"
|
60 | 63 | ],
|
61 | | - "i18n-ally.keystyle": "nested" |
| 64 | + "i18n-ally.keystyle": "nested", |
| 65 | + |
| 66 | + // Markdownlint rules |
| 67 | + "markdownlint.config": { |
| 68 | + "default": true, |
| 69 | + "MD033": false, |
| 70 | + "MD041": false |
| 71 | + } |
62 | 72 | }
|
0 commit comments