-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit bumps ESLint to v9 along with the ESlint configuration. All configuration files had been updated as to use the .mjs or .cjs extension, as to provide the proper style the file. The tsconfig file also was updated, and the way in which we detect if there is a local tsconfig in the local folder as to avoid generating one. Styling had been changed, as to use @stylistic/eslint-plugin instead of using prettier. Prettier is only used for non JS/TS files. BREAKING CHANGE: The update for all configuration files is required for all projects using the tool.
- Loading branch information
Showing
118 changed files
with
2,545 additions
and
2,152 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
strict-peer-dependencies=false | ||
auto-install-peers=false | ||
legacy-peer-deps=true |
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
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
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,18 +1,16 @@ | ||
{ | ||
// CSpell | ||
"cSpell.words": [], | ||
// Node and npm configuration | ||
"npm.autoDetect": "on", | ||
"debug.node.autoAttach": "smart", | ||
"debug.node.autoAttach": "never", | ||
"files.exclude": { | ||
"tsconfig.build.json": true | ||
}, | ||
// Code style, regular and ESLint related | ||
"files.trimTrailingWhitespace": true, | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"eslint.validate": ["typescript"], | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll": "explicit" | ||
}, | ||
"editor.formatOnSave": false, | ||
// CSpell | ||
"cSpell.words": [] | ||
"source.fixAll.eslint": "always" | ||
} | ||
} |
Oops, something went wrong.