-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependency manipulation use npx, because I don't have globally installed things Use a separate fixture directory for the TS output Silly linting More gts -- compat with hbs and TS can be later TS tests pass Split JS and TS files so they're easier to grok Update files-override lints Another test port 0 Move more files to shared Move more files to shared Make the fixture-ts folder *all* TS Combine tests, since it was 99% duplication Lints WIP WIP Update index.js Co-authored-by: Alon Bukai <[email protected]> Update index.js Co-authored-by: Alon Bukai <[email protected]> Update index.js Co-authored-by: Alon Bukai <[email protected]> Fix TS Lint config Add util for testing the app with fixtures Fix linting hmm Tests pass Update helpers.mjs
- Loading branch information
1 parent
0debaa7
commit aff0ba8
Showing
37 changed files
with
864 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import Application from '@ember/application'; | ||
// @ts-expect-error - TODO: add types to compatModules | ||
import compatModules from '@embroider/core/entrypoint'; | ||
import Resolver from 'ember-resolver'; | ||
import loadInitializers from 'ember-load-initializers'; | ||
import config from './config/environment'; | ||
|
||
export default class App extends Application { | ||
modulePrefix = config.modulePrefix; | ||
podModulePrefix = config.podModulePrefix; | ||
// TODO: remove lint disable when we have types for compatModules | ||
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument | ||
Resolver = Resolver.withModules(compatModules); | ||
} | ||
|
||
// TODO: remove lint disable when we have types for compatModules | ||
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument | ||
loadInitializers(App, config.modulePrefix, compatModules); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
import globals from 'globals'; | ||
import js from '@eslint/js'; | ||
|
||
import ts from 'typescript-eslint'; | ||
|
||
import ember from 'eslint-plugin-ember'; | ||
import emberRecommended from 'eslint-plugin-ember/configs/recommended'; | ||
import gjsRecommended from 'eslint-plugin-ember/configs/recommended-gjs'; | ||
import gtsRecommended from 'eslint-plugin-ember/configs/recommended-gts'; | ||
|
||
import prettier from 'eslint-plugin-prettier/recommended'; | ||
import qunit from 'eslint-plugin-qunit'; | ||
import n from 'eslint-plugin-n'; | ||
|
||
import emberParser from 'ember-eslint-parser'; | ||
import babelParser from '@babel/eslint-parser'; | ||
|
||
const parserOptions = { | ||
esm: { | ||
js: { | ||
ecmaFeatures: { modules: true }, | ||
ecmaVersion: 'latest', | ||
}, | ||
ts: { | ||
projectService: true, | ||
tsconfigRootDir: import.meta.dirname, | ||
}, | ||
}, | ||
}; | ||
|
||
export default ts.config( | ||
js.configs.recommended, | ||
prettier, | ||
{ | ||
files: ['**/*.js'], | ||
languageOptions: { | ||
parser: babelParser, | ||
parserOptions: parserOptions.esm.js, | ||
globals: { | ||
...globals.browser, | ||
}, | ||
}, | ||
plugins: { | ||
ember, | ||
}, | ||
rules: { | ||
...emberRecommended.rules, | ||
}, | ||
}, | ||
{ | ||
files: ['**/*.ts'], | ||
plugins: { ember }, | ||
languageOptions: { | ||
parserOptions: parserOptions.esm.ts, | ||
}, | ||
extends: [...ts.configs.strictTypeChecked, ...emberRecommended], | ||
}, | ||
{ | ||
files: ['**/*.gjs'], | ||
languageOptions: { | ||
parser: emberParser, | ||
parserOptions: parserOptions.esm.js, | ||
globals: { | ||
...globals.browser, | ||
}, | ||
}, | ||
plugins: { | ||
ember, | ||
}, | ||
rules: { | ||
...emberRecommended.rules, | ||
...gjsRecommended.rules, | ||
}, | ||
}, | ||
{ | ||
files: ['**/*.gts'], | ||
plugins: { ember }, | ||
languageOptions: { | ||
parserOptions: parserOptions.esm.ts, | ||
}, | ||
extends: [ | ||
...ts.configs.strictTypeChecked, | ||
...emberRecommended, | ||
...gtsRecommended, | ||
], | ||
}, | ||
{ | ||
files: ['tests/**/*-test.{js,gjs}'], | ||
plugins: { | ||
qunit, | ||
}, | ||
}, | ||
/** | ||
* CJS node files | ||
*/ | ||
{ | ||
files: [ | ||
'**/*.cjs', | ||
'config/**/*.js', | ||
'testem.js', | ||
'testem*.js', | ||
'.prettierrc.js', | ||
'.stylelintrc.js', | ||
'.template-lintrc.js', | ||
'ember-cli-build.js', | ||
], | ||
plugins: { | ||
n, | ||
}, | ||
|
||
languageOptions: { | ||
sourceType: 'script', | ||
ecmaVersion: 'latest', | ||
globals: { | ||
...globals.node, | ||
}, | ||
}, | ||
}, | ||
/** | ||
* ESM node files | ||
*/ | ||
{ | ||
files: ['*.mjs'], | ||
plugins: { | ||
n, | ||
}, | ||
|
||
languageOptions: { | ||
sourceType: 'module', | ||
ecmaVersion: 'latest', | ||
parserOptions: parserOptions.esm.js, | ||
globals: { | ||
...globals.node, | ||
}, | ||
}, | ||
}, | ||
/** | ||
* Settings | ||
*/ | ||
{ | ||
ignores: ['dist/', 'node_modules/', 'coverage/', '!**/.*'], | ||
linterOptions: { | ||
reportUnusedDisableDirectives: 'error', | ||
}, | ||
}, | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import Application from '<%= name %>/app'; | ||
import config from '<%= name %>/config/environment'; | ||
import * as QUnit from 'qunit'; | ||
import { setApplication } from '@ember/test-helpers'; | ||
import { setup } from 'qunit-dom'; | ||
import { start as qunitStart } from 'ember-qunit'; | ||
|
||
export function start() { | ||
setApplication(Application.create(config.APP)); | ||
|
||
setup(QUnit.assert); | ||
|
||
qunitStart(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"extends": "@tsconfig/ember/tsconfig.json", | ||
"include": [ | ||
"app/**/*", | ||
"tests/**/*", | ||
], | ||
"glint": { | ||
"environment": [ | ||
"ember-loose", | ||
"ember-template-imports" | ||
] | ||
}, | ||
"compilerOptions": { | ||
"allowJs": true, | ||
/** | ||
https://www.typescriptlang.org/tsconfig#noEmitOnError | ||
Do not block emit on TS errors. | ||
*/ | ||
"noEmitOnError": false, | ||
|
||
"declaration": false, | ||
"declarationMap": false, | ||
|
||
/** | ||
https://www.typescriptlang.org/tsconfig#allowImportingTsExtensions | ||
We want our tooling to know how to resolve our custom files so the appropriate plugins | ||
can do the proper transformations on those files. | ||
*/ | ||
"allowImportingTsExtensions": true, | ||
"paths": { | ||
"<%= name %>/tests/*": [ | ||
"./tests/*" | ||
], | ||
"<%= name %>/*": [ | ||
"./app/*" | ||
], | ||
"*": [ | ||
"./types/*" | ||
] | ||
}, | ||
"types": [ | ||
"ember-source/types" | ||
] | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import Route from 'ember-route-template'; | ||
import { pageTitle } from 'ember-page-title'; | ||
<% if (welcome) {%>import { WelcomePage } from 'ember-welcome-page';<% } %> | ||
|
||
export default Route( | ||
<template> | ||
{{pageTitle "<%= namespace %>"}} | ||
<% if (welcome) { %> | ||
{{outlet}} | ||
|
||
{{! The following component displays Ember's default welcome message. }} | ||
<WelcomePage /> | ||
{{! Feel free to remove this! }}<% } else { %> | ||
<h2 id="title">Welcome to Ember</h2> | ||
|
||
{{outlet}}<% } %> | ||
</template> | ||
); |
Oops, something went wrong.