Skip to content

Commit

Permalink
eslint-config v0.5.0
Browse files Browse the repository at this point in the history
BREAKING CHANGE
Comments can appear at the beginning of blocks. This should fix the collision with `padded-blocks`.
  • Loading branch information
Phoenix35 committed Jul 2, 2021
1 parent 80eb24d commit 46c978e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,8 @@ module.exports = {
"error",
{
"afterBlockComment": false,
"afterLineComment": false
"afterLineComment": false,
"allowBlockStart": true
}
],

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@phoenix35/eslint-config",
"version": "0.4.0",
"version": "0.5.0",
"description": "Complete ESLint shareable config for beginners",
"main": "index.js",
"scripts": {
Expand All @@ -23,12 +23,12 @@
},
"peerDependencies": {
"eslint": ">= 7.29.0",
"eslint-plugin-jsdoc": ">=35.3.2",
"eslint-plugin-jsdoc": ">=35.4.1",
"eslint-plugin-node": ">=11.1.0"
},
"devDependencies": {
"eslint": "^7.29.0",
"eslint-plugin-jsdoc": "^35.3.2",
"eslint-plugin-jsdoc": "^35.4.1",
"eslint-plugin-node": "^11.1.0"
},
"engines": {
Expand Down

0 comments on commit 46c978e

Please sign in to comment.