-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #476 from NullVoxPopuli/upgrade-lint-dependencies
Upgrade lint changes
- Loading branch information
Showing
16 changed files
with
694 additions
and
700 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,19 @@ | ||
'use strict'; | ||
"use strict"; | ||
|
||
const { configs } = require('@nullvoxpopuli/eslint-configs'); | ||
const { configs } = require("@nullvoxpopuli/eslint-configs"); | ||
|
||
module.exports = configs.ember(); | ||
const config = configs.ember(); | ||
|
||
module.exports = { | ||
...config, | ||
overrides: [ | ||
...config.overrides, | ||
{ | ||
files: ["**/*.ts"], | ||
rules: { | ||
"@typescript-eslint/ban-types": "off", | ||
"@typescript-eslint/no-explicit-any": "off", | ||
}, | ||
}, | ||
], | ||
}; |
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.
1 change: 1 addition & 0 deletions
1
...echart-component/types/missing-types.d.ts → ...hed-developmentn-types/missing-types.d.ts
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import '@ember/component'; | ||
|
||
import type {TemplateFactory} from 'ember-cli-htmlbars'; | ||
|
||
type TF = TemplateFactory; | ||
|
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 |
---|---|---|
|
@@ -13,14 +13,14 @@ | |
"lint": "pnpm run --filter '*' lint:js --fix" | ||
}, | ||
"devDependencies": { | ||
"ember-template-lint": "^3.12.0", | ||
"eslint": "^7.32.0", | ||
"eslint-config-prettier": "^8.3.0", | ||
"eslint-plugin-ember": "^10.5.7", | ||
"ember-template-lint": "^5.13.0", | ||
"eslint": "^8.56.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-ember": "^11.12.0", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-prettier": "^3.4.0", | ||
"eslint-plugin-prettier": "^5.1.2", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^2.4.1", | ||
"prettier": "^3.1.1", | ||
"release-plan": "^0.6.0" | ||
}, | ||
"packageManager": "[email protected]", | ||
|
Oops, something went wrong.