Skip to content

Commit

Permalink
Merge pull request #1016 from GoogleChromeLabs/update/disable-eslint-…
Browse files Browse the repository at this point in the history
…rule

Disable missing eslint rule: jsdoc/newline-after-description
  • Loading branch information
westonruter authored Jul 5, 2023
2 parents 10b91fb + 7c73d15 commit 2e6e8e7
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 145 deletions.
21 changes: 12 additions & 9 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
{
"root": true,
"extends": [ "plugin:@wordpress/eslint-plugin/recommended" ],
"env": {
"browser": true,
"es6": true
},
"root": true,
"extends": ["plugin:@wordpress/eslint-plugin/recommended"],
"rules": {
"jsdoc/newline-after-description": 0
},
"env": {
"browser": true,
"es6": true
},
"globals": {
"wp": "writable",
"FetchEvent": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018
}
"parserOptions": {
"ecmaVersion": 2018
}
}
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ module.exports = function (grunt) {
new Date()
.toISOString()
.replace(/\.\d+/, '')
.replace(/-|:/g, '');
.replace(/[-:]/g, '');

const paths = lsOutput
.trim()
Expand Down
Loading

0 comments on commit 2e6e8e7

Please sign in to comment.