Skip to content

Commit

Permalink
fix everything
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Jan 21, 2023
1 parent 963209f commit 50efb4b
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 22 deletions.
31 changes: 15 additions & 16 deletions ember-resources/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,21 @@ module.exports = {
...config.overrides,
{
files: ['*.cjs'],
rules: {
'n/no-unsupported-features/es-syntax': [
'error',
{

version: '16.0.0',
}
],
'n/no-unsupported-features': [
'error',
{
version: '16.0.0',
ignores: [],
},
],
},
rules: {
'n/no-unsupported-features/es-syntax': [
'error',
{
version: '16.0.0',
},
],
'n/no-unsupported-features': [
'error',
{
version: '16.0.0',
ignores: [],
},
],
},
},
{
files: ['**/*.ts'],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ class ResourceInvokerManager {
return invokeHelper(cache, resource);
});


return { fn, args, cache, _: getValue(cache) };
}

Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"ci:update": "npx ember-ci-update",
"build": "pnpm run --filter ember-resources build",
"build:docs": "pnpm run --filter docs docs:collect",
"fix": "pnpm lint && pnpm format",
"lint": "pnpm run --filter '*' lint:js --fix",
"format": "pnpm run --filter '*' format",
"format:check": "pnpm run --filter '*' format:check"
Expand Down
10 changes: 5 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions testing/ember-app/.eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
!.*
.*/
.eslintcache
*.gjs
*.gts

# ember-try
/.node_modules.ember-try/
Expand Down
1 change: 1 addition & 0 deletions testing/ember-app/tests/core/js-test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-empty-function */
/* eslint-disable @typescript-eslint/no-explicit-any */
import { tracked } from '@glimmer/tracking';
import { destroy, isDestroyed, registerDestructor } from '@ember/destroyable';
Expand Down
1 change: 1 addition & 0 deletions testing/ember-app/types/ember-app/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/ban-types */
// import type Ember from 'ember';

import '@glint/environment-ember-loose';
Expand Down

0 comments on commit 50efb4b

Please sign in to comment.