Skip to content

Commit

Permalink
eslint-config-seekingalpha-react ver. 7.32.0
Browse files Browse the repository at this point in the history
- [deps] upgrade `eslint-plugin-jsx-a11y` to version `6.9.0`
  • Loading branch information
alexkoval committed Jun 22, 2024
1 parent 44dfe82 commit 1208b6f
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.14.0
20.15.0
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ module.exports = {
'import/extensions': ['.js', '.jsx', '.ts', '.tsx', '.mts', '.cts'],

'import/core-modules': [],
'import/ignore': ['node_modules', '\\.(scss|css|less|hbs|svg|json)$'],
'import/ignore': [
'node_modules',
String.raw`\.(scss|css|less|hbs|svg|json)$`,
],
},
};
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ module.exports = {
'error',
{
importFunctions: [],
webpackChunknameFormat: '[a-zA-Z\\d]+-[S|R|W|M](_(Pro|Pre|In|Out)+)?',
webpackChunknameFormat: String.raw`[a-zA-Z\d]+-[S|R|W|M](_(Pro|Pre|In|Out)+)?`,
},
],

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ module.exports = {
'default-case': [
'error',
{
commentPattern: '^skip\\sdefault',
commentPattern: String.raw`^skip\sdefault`,
},
],

Expand Down
4 changes: 4 additions & 0 deletions eslint-configs/eslint-config-seekingalpha-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 7.32.0 - 2024-06-22

- [deps] upgrade `eslint-plugin-jsx-a11y` to version `6.9.0`

## 7.31.0 - 2024-06-19

- [deps] upgrade `eslint-plugin-react` to version `7.34.3`
Expand Down
2 changes: 1 addition & 1 deletion eslint-configs/eslint-config-seekingalpha-react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This package includes the shareable ESLint config used by [SeekingAlpha](https:/

Install ESLint and all [Peer Dependencies](https://nodejs.org/en/blog/npm/peer-dependencies/):

npm install [email protected] eslint-plugin-jsx-a11y@6.8.0 [email protected] [email protected] --save-dev
npm install [email protected] eslint-plugin-jsx-a11y@6.9.0 [email protected] [email protected] --save-dev

Install SeekingAlpha shareable ESLint:

Expand Down
6 changes: 3 additions & 3 deletions eslint-configs/eslint-config-seekingalpha-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-seekingalpha-react",
"version": "7.31.0",
"version": "7.32.0",
"description": "SeekingAlpha's sharable React.js ESLint config",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -50,14 +50,14 @@
},
"peerDependencies": {
"eslint": "8.57.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-react": "7.34.3",
"eslint-plugin-react-hooks": "4.6.2"
},
"devDependencies": {
"eslint": "8.57.0",
"eslint-find-rules": "4.1.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-react": "7.34.3",
"eslint-plugin-react-hooks": "4.6.2"
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "seekingalpha-javascript-style",
"version": "5.38.28",
"version": "5.38.29",
"description": "Set of linting rules, guides and best practices for best Javascript code",
"main": "index.js",
"type": "module",
Expand Down

0 comments on commit 1208b6f

Please sign in to comment.