We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2678bc0 commit f0ca88eCopy full SHA for f0ca88e
lib/recommended.mjs
@@ -8,6 +8,7 @@ export const plugin = emberPlugin;
8
export const parser = emberParser;
9
10
export const base = {
11
+ files: ['**/*.{js,ts}'],
12
plugins: { ember: emberPlugin },
13
rules: {
14
...baseRules,
@@ -37,6 +38,9 @@ export const gts = {
37
38
files: ['**/*.gts'],
39
languageOptions: {
40
parser: emberParser,
41
+ parserOptions: {
42
+ extraFileExtensions: ['.gts'],
43
+ },
44
// parser options should be supplied in the consuming project
45
},
46
processor: 'ember/noop',
@@ -51,7 +55,9 @@ export default {
51
55
plugin,
52
56
parser,
53
57
// Recommended config sets
54
- base,
- gjs,
- gts,
58
+ configs: {
59
+ base,
60
+ gjs,
61
+ gts,
62
63
};
0 commit comments