Skip to content

Commit

Permalink
feat(eslint-plugin): use [email protected], latest others (#2969)
Browse files Browse the repository at this point in the history
feat(eslint-plugin): use [email protected]
allows supporting eslint 9 going forward

https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.0.0
  • Loading branch information
AviVahl authored Aug 1, 2024
1 parent 132abbe commit fc01c78
Show file tree
Hide file tree
Showing 37 changed files with 1,028 additions and 403 deletions.
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ umd
dist
fixtures
packages/create-stylable-app/template
packages/create-stylable-app/typings/template.d.ts
packages/runtime/stylesheet.d.ts
7 changes: 4 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@
{
"files": ["*.ts", "*.tsx"],
"parserOptions": {
"EXPERIMENTAL_useProjectService": {
"maximumDefaultProjectFileMatchCount_THIS_WILL_SLOW_DOWN_LINTING": 10000
}
"projectService": true
},
"extends": [
"plugin:@typescript-eslint/recommended",
Expand All @@ -42,6 +40,9 @@
"@typescript-eslint/restrict-plus-operands": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/unbound-method": "off",
"@typescript-eslint/no-unused-expressions": "off",
"@typescript-eslint/no-empty-object-type": "off",
"@typescript-eslint/no-require-imports": "off",
"@typescript-eslint/no-misused-promises": "off", // ToDo: remove once eslint fix issue.
"@typescript-eslint/no-base-to-string": "off" // this rule is not working properly
}
Expand Down
Loading

0 comments on commit fc01c78

Please sign in to comment.