File tree Expand file tree Collapse file tree 6 files changed +9
-9
lines changed
with-ts-blank-eslint-parser Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -11,4 +11,4 @@ export declare const disableTypeChecked: Linter.Config[];
1111/**
1212 * Common ESLint JS rules to disable that are problematic when using TypeScript.
1313 */
14- export declare const disableProblemticEslintJsRules : Linter . Config ;
14+ export declare const disableProblematicEslintJsRules : Linter . Config ;
Original file line number Diff line number Diff line change @@ -215,7 +215,7 @@ export const disableTypeChecked = defineConfig([
215215/**
216216 * Common ESLint JS rules to disable that are problematic when using TypeScript.
217217 */
218- export const disableProblemticEslintJsRules = {
218+ export const disableProblematicEslintJsRules = {
219219 rules : {
220220 "no-dupe-args" : "off" ,
221221 "no-unused-vars" : "off" ,
Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ export const disableTypeChecked: Linter.Config[] = defineConfig([
233233/**
234234 * Common ESLint JS rules to disable that are problematic when using TypeScript.
235235 */
236- export const disableProblemticEslintJsRules : Linter . Config = {
236+ export const disableProblematicEslintJsRules : Linter . Config = {
237237 rules : {
238238 "no-dupe-args" : "off" ,
239239 "no-unused-vars" : "off" ,
Original file line number Diff line number Diff line change 77 GLOB_SCRIPTS ,
88 GLOB_TESTS ,
99 GLOB_TS ,
10- disableProblemticEslintJsRules ,
10+ disableProblematicEslintJsRules ,
1111 disableTypeChecked ,
1212 strictTypeChecked ,
1313} from "@local/configs/eslint" ;
@@ -100,5 +100,5 @@ export default defineConfig([
100100 "local/avoid-multiline-template-expression" : "off" ,
101101 } ,
102102 } ,
103- disableProblemticEslintJsRules ,
103+ disableProblematicEslintJsRules ,
104104] ) ;
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import globals from "globals";
1313import JSCONFIG_APP from "./jsconfig.app.json" with { type : "json" } ;
1414import JSCONFIG_NODE from "./jsconfig.node.json" with { type : "json" } ;
1515
16- const disableProblemticEslintJsRules = {
16+ const disableProblematicEslintJsRules = {
1717 rules : {
1818 // handled by TypeScript
1919 "no-dupe-args" : "off" ,
@@ -79,5 +79,5 @@ export default defineConfig([
7979 eslintPluginReactHooks . configs . flat [ "recommended-latest" ] ?? [ ] ,
8080 ] ,
8181 } ,
82- disableProblemticEslintJsRules ,
82+ disableProblematicEslintJsRules ,
8383] ) ;
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import tsBlankEslintParser from "ts-blank-eslint-parser";
99import TSCONFIG_APP from "./tsconfig.app.json" with { type : "json" } ;
1010import TSCONFIG_NODE from "./tsconfig.node.json" with { type : "json" } ;
1111
12- const disableProblemticEslintJsRules = {
12+ const disableProblematicEslintJsRules = {
1313 rules : {
1414 // handled by TypeScript
1515 "no-dupe-args" : "off" ,
@@ -53,5 +53,5 @@ export default defineConfig([
5353 eslintPluginReactRefresh . configs . recommended ,
5454 ] ,
5555 } ,
56- disableProblemticEslintJsRules ,
56+ disableProblematicEslintJsRules ,
5757] ) ;
You can’t perform that action at this time.
0 commit comments