File tree Expand file tree Collapse file tree 4 files changed +84
-9
lines changed Expand file tree Collapse file tree 4 files changed +84
-9
lines changed Original file line number Diff line number Diff line change 5
5
6
6
Setting `disableAnalytics` to true will prevent any data from being sent.
7
7
*/
8
- "disableAnalytics": false
8
+ "disableAnalytics": false,
9
+
10
+ /**
11
+ Setting `componentAuthoringFormat` to "strict" will force the blueprint generators to generate GJS
12
+ or GTS files for the component and the component rendering test. "loose" is the default.
13
+ */
14
+ "componentAuthoringFormat": "strict",
15
+
16
+ /**
17
+ Setting `routeAuthoringFormat` to "strict" will force the blueprint generators to generate GJS
18
+ or GTS templates for routes. "loose" is the default
19
+ */
20
+ "routeAuthoringFormat": "strict"
9
21
}
Original file line number Diff line number Diff line change 1
- import babelParser from '@babel/eslint-parser' ;
2
1
import { FlatCompat } from '@eslint/eslintrc' ;
3
2
import js from '@eslint/js' ;
3
+ import emberEslintParser from 'ember-eslint-parser' ;
4
4
import ember from 'eslint-plugin-ember' ;
5
5
import emberConcurrency from 'eslint-plugin-ember-concurrency' ;
6
6
import importHelpers from 'eslint-plugin-import-helpers' ;
@@ -66,7 +66,7 @@ export default [
66
66
...globals . browser ,
67
67
} ,
68
68
69
- parser : babelParser ,
69
+ parser : emberEslintParser ,
70
70
ecmaVersion : 2018 ,
71
71
sourceType : 'module' ,
72
72
Original file line number Diff line number Diff line change 34
34
"e2e" : " playwright test"
35
35
},
36
36
"prettier" : {
37
+ "plugins" : [
38
+ " prettier-plugin-ember-template-tag"
39
+ ],
37
40
"arrowParens" : " avoid" ,
38
41
"printWidth" : 120 ,
39
42
"singleQuote" : true ,
98
101
"ember-data" : " 5.6.0" ,
99
102
"ember-disable-prototype-extensions" : " 1.1.3" ,
100
103
"ember-error-route" : " 0.2.0" ,
104
+ "ember-eslint-parser" : " ^0.5.11" ,
101
105
"ember-event-helpers" : " 0.1.1" ,
102
106
"ember-exam" : " 9.1.0" ,
103
107
"ember-inflector" : " 6.0.0" ,
112
116
"ember-scoped-css-compat" : " 10.2.3" ,
113
117
"ember-source" : " 6.6.0" ,
114
118
"ember-svg-jar" : " 2.6.3" ,
119
+ "ember-template-imports" : " ^4.3.0" ,
115
120
"ember-template-lint" : " 7.9.2" ,
116
121
"ember-test-selectors" : " 7.1.0" ,
117
122
"ember-truth-helpers" : " 4.0.3" ,
138
143
"postcss-loader" : " 8.1.1" ,
139
144
"postcss-preset-env" : " 10.2.4" ,
140
145
"prettier" : " 3.6.2" ,
146
+ "prettier-plugin-ember-template-tag" : " ^2.1.0" ,
141
147
"qunit" : " 2.24.1" ,
142
148
"qunit-console-grouper" : " 0.3.0" ,
143
149
"qunit-dom" : " 3.4.0" ,
191
197
},
192
198
"volta" : {
193
199
"node" : " 22.18.0"
200
+ },
201
+ "exports" : {
202
+ "./tests/*" : " ./tests/*" ,
203
+ "./*" : " ./app/*"
194
204
}
195
205
}
You can’t perform that action at this time.
0 commit comments