Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

seekingalpha-javascript-style ver. 5.9.0 #297

Merged
merged 1 commit into from
Jul 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
node_modules
!.eslintrc.js
!.eslintrc.cjs
File renamed without changes.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"name": "seekingalpha-javascript-style",
"version": "5.8.0",
"version": "5.9.0",
"description": "Set of linting rules, guides and best practices for best Javascript code",
"main": "index.js",
"type": "module",
"engines": {
"node": ">= 18"
},
Expand Down Expand Up @@ -43,7 +44,7 @@
]
},
"devDependencies": {
"@seekingalpha/prettier-config-samw": "1.1.0",
"@seekingalpha/prettier-config-samw": "1.2.0",
"eslint": "8.44.0",
"eslint-config-seekingalpha-base": "6.10.0",
"eslint-config-seekingalpha-node": "5.41.1",
Expand All @@ -55,6 +56,6 @@
"eslint-plugin-unicorn": "47.0.0",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"prettier": "2.8.8"
"prettier": "3.0.0"
}
}
6 changes: 4 additions & 2 deletions prettier.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
const config = require('@seekingalpha/prettier-config-samw');
// eslint-disable-next-line node/no-unsupported-features/es-syntax
import config from '@seekingalpha/prettier-config-samw';

module.exports = {
// eslint-disable-next-line import/no-anonymous-default-export, import/no-default-export, node/no-unsupported-features/es-syntax
export default {
...config,
};