Skip to content

Commit 9ef3e00

Browse files
authoredFeb 2, 2024
Merge pull request #463 from appuniversum/chore/ts-conversion
Partial TypeScript conversion
2 parents aeb00ba + 6eee009 commit 9ef3e00

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+1736
-900
lines changed
 

‎.eslintrc.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,11 @@ module.exports = {
2020
'plugin:@typescript-eslint/eslint-recommended',
2121
'plugin:@typescript-eslint/recommended',
2222
],
23-
rules: {},
23+
rules: {
24+
// This works around an issue in Glint https://github.com/typed-ember/glint/issues/697
25+
// It also makes adding state to a component easier, since no other code changes would be needed.
26+
'ember/no-empty-glimmer-component-classes': 'off',
27+
},
2428
},
2529
// node files
2630
{

‎.template-lintrc.js

+8
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,12 @@ module.exports = {
77
'addon/components/au-data-table/**',
88
'tests/dummy/app/components/docs*/**',
99
],
10+
overrides: [
11+
{
12+
files: ['tests/integration/**'],
13+
rules: {
14+
'require-input-label': 'off',
15+
},
16+
},
17+
],
1018
};

0 commit comments

Comments
 (0)