Skip to content

Commit

Permalink
stashing
Browse files Browse the repository at this point in the history
  • Loading branch information
runspired committed Jan 11, 2025
1 parent 989b83c commit 85143d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"eslint-plugin-qunit": "^8.1.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"rollup": "^4.17.2",
"typescript": "^5.4.5",
"typescript": "^5.7.2",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.9.1"
},
Expand Down
11 changes: 3 additions & 8 deletions tests/warp-drive__schema-record/eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,17 @@
import { globalIgnores } from '@warp-drive/internal-config/eslint/ignore.js';
import * as gts from '@warp-drive/internal-config/eslint/gts.js';
import * as node from '@warp-drive/internal-config/eslint/node.js';
import * as typescript from '@warp-drive/internal-config/eslint/typescript.js';
import * as qunit from '@warp-drive/internal-config/eslint/qunit.js';

/** @type {import('eslint').Linter.FlatConfig[]} */
export default [
// all ================
globalIgnores(),

// browser (js/ts) ================
typescript.browser({
enableGlint: true,
srcDirs: ['app', 'tests'],
allowedImports: ['@ember/application', '@ember/object', '@ember/owner'],
}),

// // browser (js/ts) ================
gts.browser({
srcDirs: ['app', 'tests'],
files: ['**/*.{gts,gjs,ts}'],
allowedImports: ['@ember/application', '@ember/object', '@ember/owner'],
}),

Expand All @@ -30,6 +24,7 @@ export default [

// Test Support ================
qunit.ember({
enableGlint: true,
allowedImports: ['@ember/application', '@ember/object', '@ember/owner', '@glimmer/component'],
}),
];

0 comments on commit 85143d7

Please sign in to comment.