@jobscale/eslint-plugin-standard 0.0.11 → 0.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,7 +5,7 @@ name: Docker
5
5
  # separate terms of service, privacy policy, and support
6
6
  # documentation.
7
7
 
8
- # The workflow was triggered 210 times via automatically.
8
+ # The workflow was triggered 265 times via automatically.
9
9
 
10
10
  on:
11
11
  # schedule:
package/index.js CHANGED
@@ -8,7 +8,10 @@ import airbnbErrors from './rules/errors.js';
8
8
  import airbnbNode from './rules/node.js';
9
9
 
10
10
  const rules = {
11
- indent: ['error', 2, { MemberExpression: 0 }],
11
+ indent: ['error', 2, {
12
+ MemberExpression: 0,
13
+ ignoredNodes: ['ConditionalExpression'],
14
+ }],
12
15
  quotes: ['error', 'single', { avoidEscape: true }],
13
16
  camelcase: ['error', { properties: 'never' }],
14
17
  semi: ['error', 'always'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jobscale/eslint-plugin-standard",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "description": "eslint plugin standard",
5
5
  "keywords": [
6
6
  "eslint",