eslint-config-logdna
Advanced tools
Comparing version 7.0.0 to 7.0.1
@@ -12,3 +12,3 @@ { | ||
"parserOptions": { | ||
"ecmaVersion": 2020, | ||
"ecmaVersion": 2022, | ||
"sourceType": "script", | ||
@@ -15,0 +15,0 @@ "ecmaFeatures": { |
## Changelog | ||
## [7.0.1](https://github.com/logdna/eslint-config-logdna/compare/v7.0.0...v7.0.1) (2023-03-08) | ||
### Chores | ||
* **deps**: eslint-plugin-sensible@3.0.2 [b9865bd](https://github.com/logdna/eslint-config-logdna/commit/b9865bde8a214676aa0f1d842ccd39d3cfde969e) - Eric Satterwhite | ||
# [7.0.0](https://github.com/logdna/eslint-config-logdna/compare/v6.1.2...v7.0.0) (2022-12-06) | ||
@@ -4,0 +11,0 @@ |
{ | ||
"name": "eslint-config-logdna", | ||
"version": "7.0.0", | ||
"version": "7.0.1", | ||
"description": "LogDNA's preferred eslint config to be used across all projects", | ||
@@ -47,4 +47,4 @@ "main": "index.js", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-sensible": "^3.0.1" | ||
"eslint-plugin-sensible": "^3.0.2" | ||
} | ||
} |
@@ -147,4 +147,3 @@ 'use strict' | ||
const messages = result.messages | ||
t.equal(result.errorCount, 3, 'error count') | ||
t.equal(result.errorCount, 4, 'error count') | ||
t.equal( | ||
@@ -158,2 +157,8 @@ messages[0].message | ||
messages[1].message | ||
, 'Expected indentation of 14 spaces but found 0.' | ||
, 'fooBar call 1: arguments should align on first punctuation' | ||
) | ||
t.equal( | ||
messages[2].message | ||
, 'Expected newline between arguments/params.' | ||
@@ -164,3 +169,3 @@ , 'fooBar call 2: second param should be followed by newline' | ||
t.equal( | ||
messages[2].message | ||
messages[3].message | ||
, 'There should be a line break after this argument.' | ||
@@ -167,0 +172,0 @@ , 'fooBar call 2: space after second param should be newline' |
39382
497