alexstep/create-riot-app-ejected

View on GitHub

Showing 26 of 26 total issues

Function exports has 94 lines of code (exceeds 25 allowed). Consider refactoring.
Open

module.exports = function () {
  console.groupCollapsed('SW::Cache')
  const CACHE_NAME = '_cache_' + ((new Date()).toISOString())

  console.log('SW::Cache CACHE_NAME:', CACHE_NAME)
Severity: Major
Found in src/model/ServiceWorker/cache.sw.js - About 3 hrs to fix

    Function pan has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
    Open

      pan (e) {
        if (e.pointerType !== 'touch' || e.center.x <= 0 || [2,4].indexOf(e.direction) < 0) {
          return
        }
        if (!this.panning && e.pointers[0].clientX > this.handler_width && !this.drawer_open) {
    Severity: Minor
    Found in src/view/components/drawer/swipe.js - About 2 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

        if (e.direction === 4) {
          if (x < this.drawer_width * 0.3) {
            this.drawer_open = false
          }
          if (x >= this.drawer_width * 0.3) {
    Severity: Major
    Found in src/view/components/drawer/swipe.js and 1 other location - About 2 hrs to fix
    src/view/components/drawer/swipe.js on lines 68..75

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 75.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

        if (e.direction === 2) {
          if (x < this.drawer_width * 0.7) {
            this.drawer_open = false
          }
          if (x >= this.drawer_width * 0.7) {
    Severity: Major
    Found in src/view/components/drawer/swipe.js and 1 other location - About 2 hrs to fix
    src/view/components/drawer/swipe.js on lines 59..66

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 75.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Function pan has 34 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      pan (e) {
        if (e.pointerType !== 'touch' || e.center.x <= 0 || [2,4].indexOf(e.direction) < 0) {
          return
        }
        if (!this.panning && e.pointers[0].clientX > this.handler_width && !this.drawer_open) {
    Severity: Minor
    Found in src/view/components/drawer/swipe.js - About 1 hr to fix

      Function exports has 32 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      module.exports = function (conf) {
        let sounds_path = conf.sounds_path ? conf.sounds_path : '/sounds/'
      
        let sounds = {}
      
      
      Severity: Minor
      Found in src/view/sounds.js - About 1 hr to fix

        Function resource has 30 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

              .then((response) => {
                if (response) {
                  console.log(`Cache [SW] fetch URL ${requestUrl.href} from cache`)
        
                  return response
        Severity: Minor
        Found in src/model/ServiceWorker/cache.sw.js - About 1 hr to fix

          Function exports has 29 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          module.exports = function () {
            self.addEventListener('message', (event) => {
              if (event.data && event.data.pushEnabled) {
                self.registration.showNotification(
                  'Notifications enbaled',
          Severity: Minor
          Found in src/model/ServiceWorker/push.sw.js - About 1 hr to fix

            Function topbarScrollHide has 27 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              topbarScrollHide () {
                $(window).scrollTop(0)
            
                if ($(window).width() > 800) {
                  return false
            Severity: Minor
            Found in src/view/app.view.js - About 1 hr to fix

              Function exports has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
              Open

              module.exports = function (conf) {
                let sounds_path = conf.sounds_path ? conf.sounds_path : '/sounds/'
              
                let sounds = {}
              
              
              Severity: Minor
              Found in src/view/sounds.js - About 55 mins to fix

              Cognitive Complexity

              Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

              A method's cognitive complexity is based on a few simple rules:

              • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
              • Code is considered more complex for each "break in the linear flow of the code"
              • Code is considered more complex when "flow breaking structures are nested"

              Further reading

              There should be no space after '{'.
              Open

                  this.sound = require('./sounds.js')({ sounds_path:'/sounds/' })
              Severity: Minor
              Found in src/view/app.view.js by eslint

              enforce consistent spacing inside braces (object-curly-spacing)

              While formatting preferences are very personal, a number of style guides require or disallow spaces between curly braces in the following situations:

              // simple object literals
              var obj = { foo: "bar" };
              
              // nested object literals
              var obj = { foo: { zoo: "bar" } };
              
              // destructuring assignment (EcmaScript 6)
              var { x, y } = y;
              
              // import/export declarations (EcmaScript 6)
              import { foo } from "bar";
              export { foo };

              Rule Details

              This rule enforce consistent spacing inside braces of object literals, destructuring assignments, and import/export specifiers.

              Options

              This rule has two options, a string option and an object option.

              String option:

              • "never" (default) disallows spacing inside of braces
              • "always" requires spacing inside of braces (except {})

              Object option:

              • "arraysInObjects": true requires spacing inside of braces of objects beginning and/or ending with an array element (applies when the first option is set to never)
              • "arraysInObjects": false disallows spacing inside of braces of objects beginning and/or ending with an array element (applies when the first option is set to always)
              • "objectsInObjects": true requires spacing inside of braces of objects beginning and/or ending with an object element (applies when the first option is set to never)
              • "objectsInObjects": false disallows spacing inside of braces of objects beginning and/or ending with an object element (applies when the first option is set to always)

              never

              Examples of incorrect code for this rule with the default "never" option:

              /*eslint object-curly-spacing: ["error", "never"]*/
              
              var obj = { 'foo': 'bar' };
              var obj = {'foo': 'bar' };
              var obj = { baz: {'foo': 'qux'}, bar};
              var obj = {baz: { 'foo': 'qux'}, bar};
              var {x } = y;
              import { foo } from 'bar';

              Examples of correct code for this rule with the default "never" option:

              /*eslint object-curly-spacing: ["error", "never"]*/
              
              var obj = {'foo': 'bar'};
              var obj = {'foo': {'bar': 'baz'}, 'qux': 'quxx'};
              var obj = {
                'foo': 'bar'
              };
              var obj = {'foo': 'bar'
              };
              var obj = {
                'foo':'bar'};
              var obj = {};
              var {x} = y;
              import {foo} from 'bar';

              always

              Examples of incorrect code for this rule with the "always" option:

              /*eslint object-curly-spacing: ["error", "always"]*/
              
              var obj = {'foo': 'bar'};
              var obj = {'foo': 'bar' };
              var obj = { baz: {'foo': 'qux'}, bar};
              var obj = {baz: { 'foo': 'qux' }, bar};
              var obj = {'foo': 'bar'
              };
              var obj = {
                'foo':'bar'};
              var {x} = y;
              import {foo } from 'bar';

              Examples of correct code for this rule with the "always" option:

              /*eslint object-curly-spacing: ["error", "always"]*/
              
              var obj = {};
              var obj = { 'foo': 'bar' };
              var obj = { 'foo': { 'bar': 'baz' }, 'qux': 'quxx' };
              var obj = {
                'foo': 'bar'
              };
              var { x } = y;
              import { foo } from 'bar';

              arraysInObjects

              Examples of additional correct code for this rule with the "never", { "arraysInObjects": true } options:

              /*eslint object-curly-spacing: ["error", "never", { "arraysInObjects": true }]*/
              
              var obj = {"foo": [ 1, 2 ] };
              var obj = {"foo": [ "baz", "bar" ] };

              Examples of additional correct code for this rule with the "always", { "arraysInObjects": false } options:

              /*eslint object-curly-spacing: ["error", "always", { "arraysInObjects": false }]*/
              
              var obj = { "foo": [ 1, 2 ]};
              var obj = { "foo": [ "baz", "bar" ]};

              objectsInObjects

              Examples of additional correct code for this rule with the "never", { "objectsInObjects": true } options:

              /*eslint object-curly-spacing: ["error", "never", { "objectsInObjects": true }]*/
              
              var obj = {"foo": {"baz": 1, "bar": 2} };

              Examples of additional correct code for this rule with the "always", { "objectsInObjects": false } options:

              /*eslint object-curly-spacing: ["error", "always", { "objectsInObjects": false }]*/
              
              var obj = { "foo": { "baz": 1, "bar": 2 }};

              When Not To Use It

              You can turn this rule off if you are not concerned with the consistency of spacing between curly braces.

              Related Rules

              There should be no space after '{'.
              Open

                    clients.matchAll({ type: 'window' }).then(windowClients => {
              Severity: Minor
              Found in src/model/ServiceWorker/push.sw.js by eslint

              enforce consistent spacing inside braces (object-curly-spacing)

              While formatting preferences are very personal, a number of style guides require or disallow spaces between curly braces in the following situations:

              // simple object literals
              var obj = { foo: "bar" };
              
              // nested object literals
              var obj = { foo: { zoo: "bar" } };
              
              // destructuring assignment (EcmaScript 6)
              var { x, y } = y;
              
              // import/export declarations (EcmaScript 6)
              import { foo } from "bar";
              export { foo };

              Rule Details

              This rule enforce consistent spacing inside braces of object literals, destructuring assignments, and import/export specifiers.

              Options

              This rule has two options, a string option and an object option.

              String option:

              • "never" (default) disallows spacing inside of braces
              • "always" requires spacing inside of braces (except {})

              Object option:

              • "arraysInObjects": true requires spacing inside of braces of objects beginning and/or ending with an array element (applies when the first option is set to never)
              • "arraysInObjects": false disallows spacing inside of braces of objects beginning and/or ending with an array element (applies when the first option is set to always)
              • "objectsInObjects": true requires spacing inside of braces of objects beginning and/or ending with an object element (applies when the first option is set to never)
              • "objectsInObjects": false disallows spacing inside of braces of objects beginning and/or ending with an object element (applies when the first option is set to always)

              never

              Examples of incorrect code for this rule with the default "never" option:

              /*eslint object-curly-spacing: ["error", "never"]*/
              
              var obj = { 'foo': 'bar' };
              var obj = {'foo': 'bar' };
              var obj = { baz: {'foo': 'qux'}, bar};
              var obj = {baz: { 'foo': 'qux'}, bar};
              var {x } = y;
              import { foo } from 'bar';

              Examples of correct code for this rule with the default "never" option:

              /*eslint object-curly-spacing: ["error", "never"]*/
              
              var obj = {'foo': 'bar'};
              var obj = {'foo': {'bar': 'baz'}, 'qux': 'quxx'};
              var obj = {
                'foo': 'bar'
              };
              var obj = {'foo': 'bar'
              };
              var obj = {
                'foo':'bar'};
              var obj = {};
              var {x} = y;
              import {foo} from 'bar';

              always

              Examples of incorrect code for this rule with the "always" option:

              /*eslint object-curly-spacing: ["error", "always"]*/
              
              var obj = {'foo': 'bar'};
              var obj = {'foo': 'bar' };
              var obj = { baz: {'foo': 'qux'}, bar};
              var obj = {baz: { 'foo': 'qux' }, bar};
              var obj = {'foo': 'bar'
              };
              var obj = {
                'foo':'bar'};
              var {x} = y;
              import {foo } from 'bar';

              Examples of correct code for this rule with the "always" option:

              /*eslint object-curly-spacing: ["error", "always"]*/
              
              var obj = {};
              var obj = { 'foo': 'bar' };
              var obj = { 'foo': { 'bar': 'baz' }, 'qux': 'quxx' };
              var obj = {
                'foo': 'bar'
              };
              var { x } = y;
              import { foo } from 'bar';

              arraysInObjects

              Examples of additional correct code for this rule with the "never", { "arraysInObjects": true } options:

              /*eslint object-curly-spacing: ["error", "never", { "arraysInObjects": true }]*/
              
              var obj = {"foo": [ 1, 2 ] };
              var obj = {"foo": [ "baz", "bar" ] };

              Examples of additional correct code for this rule with the "always", { "arraysInObjects": false } options:

              /*eslint object-curly-spacing: ["error", "always", { "arraysInObjects": false }]*/
              
              var obj = { "foo": [ 1, 2 ]};
              var obj = { "foo": [ "baz", "bar" ]};

              objectsInObjects

              Examples of additional correct code for this rule with the "never", { "objectsInObjects": true } options:

              /*eslint object-curly-spacing: ["error", "never", { "objectsInObjects": true }]*/
              
              var obj = {"foo": {"baz": 1, "bar": 2} };

              Examples of additional correct code for this rule with the "always", { "objectsInObjects": false } options:

              /*eslint object-curly-spacing: ["error", "always", { "objectsInObjects": false }]*/
              
              var obj = { "foo": { "baz": 1, "bar": 2 }};

              When Not To Use It

              You can turn this rule off if you are not concerned with the consistency of spacing between curly braces.

              Related Rules

              There should be no space after '{'.
              Open

                  SWReady = runtime.register({ scope: (process.env.APP_SW_SCOPE || '/') })
              Severity: Minor
              Found in src/model/ServiceWorker/SW.js by eslint

              enforce consistent spacing inside braces (object-curly-spacing)

              While formatting preferences are very personal, a number of style guides require or disallow spaces between curly braces in the following situations:

              // simple object literals
              var obj = { foo: "bar" };
              
              // nested object literals
              var obj = { foo: { zoo: "bar" } };
              
              // destructuring assignment (EcmaScript 6)
              var { x, y } = y;
              
              // import/export declarations (EcmaScript 6)
              import { foo } from "bar";
              export { foo };

              Rule Details

              This rule enforce consistent spacing inside braces of object literals, destructuring assignments, and import/export specifiers.

              Options

              This rule has two options, a string option and an object option.

              String option:

              • "never" (default) disallows spacing inside of braces
              • "always" requires spacing inside of braces (except {})

              Object option:

              • "arraysInObjects": true requires spacing inside of braces of objects beginning and/or ending with an array element (applies when the first option is set to never)
              • "arraysInObjects": false disallows spacing inside of braces of objects beginning and/or ending with an array element (applies when the first option is set to always)
              • "objectsInObjects": true requires spacing inside of braces of objects beginning and/or ending with an object element (applies when the first option is set to never)
              • "objectsInObjects": false disallows spacing inside of braces of objects beginning and/or ending with an object element (applies when the first option is set to always)

              never

              Examples of incorrect code for this rule with the default "never" option:

              /*eslint object-curly-spacing: ["error", "never"]*/
              
              var obj = { 'foo': 'bar' };
              var obj = {'foo': 'bar' };
              var obj = { baz: {'foo': 'qux'}, bar};
              var obj = {baz: { 'foo': 'qux'}, bar};
              var {x } = y;
              import { foo } from 'bar';

              Examples of correct code for this rule with the default "never" option:

              /*eslint object-curly-spacing: ["error", "never"]*/
              
              var obj = {'foo': 'bar'};
              var obj = {'foo': {'bar': 'baz'}, 'qux': 'quxx'};
              var obj = {
                'foo': 'bar'
              };
              var obj = {'foo': 'bar'
              };
              var obj = {
                'foo':'bar'};
              var obj = {};
              var {x} = y;
              import {foo} from 'bar';

              always

              Examples of incorrect code for this rule with the "always" option:

              /*eslint object-curly-spacing: ["error", "always"]*/
              
              var obj = {'foo': 'bar'};
              var obj = {'foo': 'bar' };
              var obj = { baz: {'foo': 'qux'}, bar};
              var obj = {baz: { 'foo': 'qux' }, bar};
              var obj = {'foo': 'bar'
              };
              var obj = {
                'foo':'bar'};
              var {x} = y;
              import {foo } from 'bar';

              Examples of correct code for this rule with the "always" option:

              /*eslint object-curly-spacing: ["error", "always"]*/
              
              var obj = {};
              var obj = { 'foo': 'bar' };
              var obj = { 'foo': { 'bar': 'baz' }, 'qux': 'quxx' };
              var obj = {
                'foo': 'bar'
              };
              var { x } = y;
              import { foo } from 'bar';

              arraysInObjects

              Examples of additional correct code for this rule with the "never", { "arraysInObjects": true } options:

              /*eslint object-curly-spacing: ["error", "never", { "arraysInObjects": true }]*/
              
              var obj = {"foo": [ 1, 2 ] };
              var obj = {"foo": [ "baz", "bar" ] };

              Examples of additional correct code for this rule with the "always", { "arraysInObjects": false } options:

              /*eslint object-curly-spacing: ["error", "always", { "arraysInObjects": false }]*/
              
              var obj = { "foo": [ 1, 2 ]};
              var obj = { "foo": [ "baz", "bar" ]};

              objectsInObjects

              Examples of additional correct code for this rule with the "never", { "objectsInObjects": true } options:

              /*eslint object-curly-spacing: ["error", "never", { "objectsInObjects": true }]*/
              
              var obj = {"foo": {"baz": 1, "bar": 2} };

              Examples of additional correct code for this rule with the "always", { "objectsInObjects": false } options:

              /*eslint object-curly-spacing: ["error", "always", { "objectsInObjects": false }]*/
              
              var obj = { "foo": { "baz": 1, "bar": 2 }};

              When Not To Use It

              You can turn this rule off if you are not concerned with the consistency of spacing between curly braces.

              Related Rules

              There should be no space before '}'.
              Open

                  this.overlay.css({ opacity: (x / this.drawer_width) })
              Severity: Minor
              Found in src/view/components/drawer/swipe.js by eslint

              enforce consistent spacing inside braces (object-curly-spacing)

              While formatting preferences are very personal, a number of style guides require or disallow spaces between curly braces in the following situations:

              // simple object literals
              var obj = { foo: "bar" };
              
              // nested object literals
              var obj = { foo: { zoo: "bar" } };
              
              // destructuring assignment (EcmaScript 6)
              var { x, y } = y;
              
              // import/export declarations (EcmaScript 6)
              import { foo } from "bar";
              export { foo };

              Rule Details

              This rule enforce consistent spacing inside braces of object literals, destructuring assignments, and import/export specifiers.

              Options

              This rule has two options, a string option and an object option.

              String option:

              • "never" (default) disallows spacing inside of braces
              • "always" requires spacing inside of braces (except {})

              Object option:

              • "arraysInObjects": true requires spacing inside of braces of objects beginning and/or ending with an array element (applies when the first option is set to never)
              • "arraysInObjects": false disallows spacing inside of braces of objects beginning and/or ending with an array element (applies when the first option is set to always)
              • "objectsInObjects": true requires spacing inside of braces of objects beginning and/or ending with an object element (applies when the first option is set to never)
              • "objectsInObjects": false disallows spacing inside of braces of objects beginning and/or ending with an object element (applies when the first option is set to always)

              never

              Examples of incorrect code for this rule with the default "never" option:

              /*eslint object-curly-spacing: ["error", "never"]*/
              
              var obj = { 'foo': 'bar' };
              var obj = {'foo': 'bar' };
              var obj = { baz: {'foo': 'qux'}, bar};
              var obj = {baz: { 'foo': 'qux'}, bar};
              var {x } = y;
              import { foo } from 'bar';

              Examples of correct code for this rule with the default "never" option:

              /*eslint object-curly-spacing: ["error", "never"]*/
              
              var obj = {'foo': 'bar'};
              var obj = {'foo': {'bar': 'baz'}, 'qux': 'quxx'};
              var obj = {
                'foo': 'bar'
              };
              var obj = {'foo': 'bar'
              };
              var obj = {
                'foo':'bar'};
              var obj = {};
              var {x} = y;
              import {foo} from 'bar';

              always

              Examples of incorrect code for this rule with the "always" option:

              /*eslint object-curly-spacing: ["error", "always"]*/
              
              var obj = {'foo': 'bar'};
              var obj = {'foo': 'bar' };
              var obj = { baz: {'foo': 'qux'}, bar};
              var obj = {baz: { 'foo': 'qux' }, bar};
              var obj = {'foo': 'bar'
              };
              var obj = {
                'foo':'bar'};
              var {x} = y;
              import {foo } from 'bar';

              Examples of correct code for this rule with the "always" option:

              /*eslint object-curly-spacing: ["error", "always"]*/
              
              var obj = {};
              var obj = { 'foo': 'bar' };
              var obj = { 'foo': { 'bar': 'baz' }, 'qux': 'quxx' };
              var obj = {
                'foo': 'bar'
              };
              var { x } = y;
              import { foo } from 'bar';

              arraysInObjects

              Examples of additional correct code for this rule with the "never", { "arraysInObjects": true } options:

              /*eslint object-curly-spacing: ["error", "never", { "arraysInObjects": true }]*/
              
              var obj = {"foo": [ 1, 2 ] };
              var obj = {"foo": [ "baz", "bar" ] };

              Examples of additional correct code for this rule with the "always", { "arraysInObjects": false } options:

              /*eslint object-curly-spacing: ["error", "always", { "arraysInObjects": false }]*/
              
              var obj = { "foo": [ 1, 2 ]};
              var obj = { "foo": [ "baz", "bar" ]};

              objectsInObjects

              Examples of additional correct code for this rule with the "never", { "objectsInObjects": true } options:

              /*eslint object-curly-spacing: ["error", "never", { "objectsInObjects": true }]*/
              
              var obj = {"foo": {"baz": 1, "bar": 2} };

              Examples of additional correct code for this rule with the "always", { "objectsInObjects": false } options:

              /*eslint object-curly-spacing: ["error", "always", { "objectsInObjects": false }]*/
              
              var obj = { "foo": { "baz": 1, "bar": 2 }};

              When Not To Use It

              You can turn this rule off if you are not concerned with the consistency of spacing between curly braces.

              Related Rules

              There should be no space after '{'.
              Open

                  this.overlay.css({ opacity: (x / this.drawer_width) })
              Severity: Minor
              Found in src/view/components/drawer/swipe.js by eslint

              enforce consistent spacing inside braces (object-curly-spacing)

              While formatting preferences are very personal, a number of style guides require or disallow spaces between curly braces in the following situations:

              // simple object literals
              var obj = { foo: "bar" };
              
              // nested object literals
              var obj = { foo: { zoo: "bar" } };
              
              // destructuring assignment (EcmaScript 6)
              var { x, y } = y;
              
              // import/export declarations (EcmaScript 6)
              import { foo } from "bar";
              export { foo };

              Rule Details

              This rule enforce consistent spacing inside braces of object literals, destructuring assignments, and import/export specifiers.

              Options

              This rule has two options, a string option and an object option.

              String option:

              • "never" (default) disallows spacing inside of braces
              • "always" requires spacing inside of braces (except {})

              Object option:

              • "arraysInObjects": true requires spacing inside of braces of objects beginning and/or ending with an array element (applies when the first option is set to never)
              • "arraysInObjects": false disallows spacing inside of braces of objects beginning and/or ending with an array element (applies when the first option is set to always)
              • "objectsInObjects": true requires spacing inside of braces of objects beginning and/or ending with an object element (applies when the first option is set to never)
              • "objectsInObjects": false disallows spacing inside of braces of objects beginning and/or ending with an object element (applies when the first option is set to always)

              never

              Examples of incorrect code for this rule with the default "never" option:

              /*eslint object-curly-spacing: ["error", "never"]*/
              
              var obj = { 'foo': 'bar' };
              var obj = {'foo': 'bar' };
              var obj = { baz: {'foo': 'qux'}, bar};
              var obj = {baz: { 'foo': 'qux'}, bar};
              var {x } = y;
              import { foo } from 'bar';

              Examples of correct code for this rule with the default "never" option:

              /*eslint object-curly-spacing: ["error", "never"]*/
              
              var obj = {'foo': 'bar'};
              var obj = {'foo': {'bar': 'baz'}, 'qux': 'quxx'};
              var obj = {
                'foo': 'bar'
              };
              var obj = {'foo': 'bar'
              };
              var obj = {
                'foo':'bar'};
              var obj = {};
              var {x} = y;
              import {foo} from 'bar';

              always

              Examples of incorrect code for this rule with the "always" option:

              /*eslint object-curly-spacing: ["error", "always"]*/
              
              var obj = {'foo': 'bar'};
              var obj = {'foo': 'bar' };
              var obj = { baz: {'foo': 'qux'}, bar};
              var obj = {baz: { 'foo': 'qux' }, bar};
              var obj = {'foo': 'bar'
              };
              var obj = {
                'foo':'bar'};
              var {x} = y;
              import {foo } from 'bar';

              Examples of correct code for this rule with the "always" option:

              /*eslint object-curly-spacing: ["error", "always"]*/
              
              var obj = {};
              var obj = { 'foo': 'bar' };
              var obj = { 'foo': { 'bar': 'baz' }, 'qux': 'quxx' };
              var obj = {
                'foo': 'bar'
              };
              var { x } = y;
              import { foo } from 'bar';

              arraysInObjects

              Examples of additional correct code for this rule with the "never", { "arraysInObjects": true } options:

              /*eslint object-curly-spacing: ["error", "never", { "arraysInObjects": true }]*/
              
              var obj = {"foo": [ 1, 2 ] };
              var obj = {"foo": [ "baz", "bar" ] };

              Examples of additional correct code for this rule with the "always", { "arraysInObjects": false } options:

              /*eslint object-curly-spacing: ["error", "always", { "arraysInObjects": false }]*/
              
              var obj = { "foo": [ 1, 2 ]};
              var obj = { "foo": [ "baz", "bar" ]};

              objectsInObjects

              Examples of additional correct code for this rule with the "never", { "objectsInObjects": true } options:

              /*eslint object-curly-spacing: ["error", "never", { "objectsInObjects": true }]*/
              
              var obj = {"foo": {"baz": 1, "bar": 2} };

              Examples of additional correct code for this rule with the "always", { "objectsInObjects": false } options:

              /*eslint object-curly-spacing: ["error", "always", { "objectsInObjects": false }]*/
              
              var obj = { "foo": { "baz": 1, "bar": 2 }};

              When Not To Use It

              You can turn this rule off if you are not concerned with the consistency of spacing between curly braces.

              Related Rules

              There should be no space after '{'.
              Open

                  event.ports[0].postMessage({ my_data_recived:event.data })

              enforce consistent spacing inside braces (object-curly-spacing)

              While formatting preferences are very personal, a number of style guides require or disallow spaces between curly braces in the following situations:

              // simple object literals
              var obj = { foo: "bar" };
              
              // nested object literals
              var obj = { foo: { zoo: "bar" } };
              
              // destructuring assignment (EcmaScript 6)
              var { x, y } = y;
              
              // import/export declarations (EcmaScript 6)
              import { foo } from "bar";
              export { foo };

              Rule Details

              This rule enforce consistent spacing inside braces of object literals, destructuring assignments, and import/export specifiers.

              Options

              This rule has two options, a string option and an object option.

              String option:

              • "never" (default) disallows spacing inside of braces
              • "always" requires spacing inside of braces (except {})

              Object option:

              • "arraysInObjects": true requires spacing inside of braces of objects beginning and/or ending with an array element (applies when the first option is set to never)
              • "arraysInObjects": false disallows spacing inside of braces of objects beginning and/or ending with an array element (applies when the first option is set to always)
              • "objectsInObjects": true requires spacing inside of braces of objects beginning and/or ending with an object element (applies when the first option is set to never)
              • "objectsInObjects": false disallows spacing inside of braces of objects beginning and/or ending with an object element (applies when the first option is set to always)

              never

              Examples of incorrect code for this rule with the default "never" option:

              /*eslint object-curly-spacing: ["error", "never"]*/
              
              var obj = { 'foo': 'bar' };
              var obj = {'foo': 'bar' };
              var obj = { baz: {'foo': 'qux'}, bar};
              var obj = {baz: { 'foo': 'qux'}, bar};
              var {x } = y;
              import { foo } from 'bar';

              Examples of correct code for this rule with the default "never" option:

              /*eslint object-curly-spacing: ["error", "never"]*/
              
              var obj = {'foo': 'bar'};
              var obj = {'foo': {'bar': 'baz'}, 'qux': 'quxx'};
              var obj = {
                'foo': 'bar'
              };
              var obj = {'foo': 'bar'
              };
              var obj = {
                'foo':'bar'};
              var obj = {};
              var {x} = y;
              import {foo} from 'bar';

              always

              Examples of incorrect code for this rule with the "always" option:

              /*eslint object-curly-spacing: ["error", "always"]*/
              
              var obj = {'foo': 'bar'};
              var obj = {'foo': 'bar' };
              var obj = { baz: {'foo': 'qux'}, bar};
              var obj = {baz: { 'foo': 'qux' }, bar};
              var obj = {'foo': 'bar'
              };
              var obj = {
                'foo':'bar'};
              var {x} = y;
              import {foo } from 'bar';

              Examples of correct code for this rule with the "always" option:

              /*eslint object-curly-spacing: ["error", "always"]*/
              
              var obj = {};
              var obj = { 'foo': 'bar' };
              var obj = { 'foo': { 'bar': 'baz' }, 'qux': 'quxx' };
              var obj = {
                'foo': 'bar'
              };
              var { x } = y;
              import { foo } from 'bar';

              arraysInObjects

              Examples of additional correct code for this rule with the "never", { "arraysInObjects": true } options:

              /*eslint object-curly-spacing: ["error", "never", { "arraysInObjects": true }]*/
              
              var obj = {"foo": [ 1, 2 ] };
              var obj = {"foo": [ "baz", "bar" ] };

              Examples of additional correct code for this rule with the "always", { "arraysInObjects": false } options:

              /*eslint object-curly-spacing: ["error", "always", { "arraysInObjects": false }]*/
              
              var obj = { "foo": [ 1, 2 ]};
              var obj = { "foo": [ "baz", "bar" ]};

              objectsInObjects

              Examples of additional correct code for this rule with the "never", { "objectsInObjects": true } options:

              /*eslint object-curly-spacing: ["error", "never", { "objectsInObjects": true }]*/
              
              var obj = {"foo": {"baz": 1, "bar": 2} };

              Examples of additional correct code for this rule with the "always", { "objectsInObjects": false } options:

              /*eslint object-curly-spacing: ["error", "always", { "objectsInObjects": false }]*/
              
              var obj = { "foo": { "baz": 1, "bar": 2 }};

              When Not To Use It

              You can turn this rule off if you are not concerned with the consistency of spacing between curly braces.

              Related Rules

              There should be no space before '}'.
              Open

                  event.ports[0].postMessage({ my_data_recived:event.data })

              enforce consistent spacing inside braces (object-curly-spacing)

              While formatting preferences are very personal, a number of style guides require or disallow spaces between curly braces in the following situations:

              // simple object literals
              var obj = { foo: "bar" };
              
              // nested object literals
              var obj = { foo: { zoo: "bar" } };
              
              // destructuring assignment (EcmaScript 6)
              var { x, y } = y;
              
              // import/export declarations (EcmaScript 6)
              import { foo } from "bar";
              export { foo };

              Rule Details

              This rule enforce consistent spacing inside braces of object literals, destructuring assignments, and import/export specifiers.

              Options

              This rule has two options, a string option and an object option.

              String option:

              • "never" (default) disallows spacing inside of braces
              • "always" requires spacing inside of braces (except {})

              Object option:

              • "arraysInObjects": true requires spacing inside of braces of objects beginning and/or ending with an array element (applies when the first option is set to never)
              • "arraysInObjects": false disallows spacing inside of braces of objects beginning and/or ending with an array element (applies when the first option is set to always)
              • "objectsInObjects": true requires spacing inside of braces of objects beginning and/or ending with an object element (applies when the first option is set to never)
              • "objectsInObjects": false disallows spacing inside of braces of objects beginning and/or ending with an object element (applies when the first option is set to always)

              never

              Examples of incorrect code for this rule with the default "never" option:

              /*eslint object-curly-spacing: ["error", "never"]*/
              
              var obj = { 'foo': 'bar' };
              var obj = {'foo': 'bar' };
              var obj = { baz: {'foo': 'qux'}, bar};
              var obj = {baz: { 'foo': 'qux'}, bar};
              var {x } = y;
              import { foo } from 'bar';

              Examples of correct code for this rule with the default "never" option:

              /*eslint object-curly-spacing: ["error", "never"]*/
              
              var obj = {'foo': 'bar'};
              var obj = {'foo': {'bar': 'baz'}, 'qux': 'quxx'};
              var obj = {
                'foo': 'bar'
              };
              var obj = {'foo': 'bar'
              };
              var obj = {
                'foo':'bar'};
              var obj = {};
              var {x} = y;
              import {foo} from 'bar';

              always

              Examples of incorrect code for this rule with the "always" option:

              /*eslint object-curly-spacing: ["error", "always"]*/
              
              var obj = {'foo': 'bar'};
              var obj = {'foo': 'bar' };
              var obj = { baz: {'foo': 'qux'}, bar};
              var obj = {baz: { 'foo': 'qux' }, bar};
              var obj = {'foo': 'bar'
              };
              var obj = {
                'foo':'bar'};
              var {x} = y;
              import {foo } from 'bar';

              Examples of correct code for this rule with the "always" option:

              /*eslint object-curly-spacing: ["error", "always"]*/
              
              var obj = {};
              var obj = { 'foo': 'bar' };
              var obj = { 'foo': { 'bar': 'baz' }, 'qux': 'quxx' };
              var obj = {
                'foo': 'bar'
              };
              var { x } = y;
              import { foo } from 'bar';

              arraysInObjects

              Examples of additional correct code for this rule with the "never", { "arraysInObjects": true } options:

              /*eslint object-curly-spacing: ["error", "never", { "arraysInObjects": true }]*/
              
              var obj = {"foo": [ 1, 2 ] };
              var obj = {"foo": [ "baz", "bar" ] };

              Examples of additional correct code for this rule with the "always", { "arraysInObjects": false } options:

              /*eslint object-curly-spacing: ["error", "always", { "arraysInObjects": false }]*/
              
              var obj = { "foo": [ 1, 2 ]};
              var obj = { "foo": [ "baz", "bar" ]};

              objectsInObjects

              Examples of additional correct code for this rule with the "never", { "objectsInObjects": true } options:

              /*eslint object-curly-spacing: ["error", "never", { "objectsInObjects": true }]*/
              
              var obj = {"foo": {"baz": 1, "bar": 2} };

              Examples of additional correct code for this rule with the "always", { "objectsInObjects": false } options:

              /*eslint object-curly-spacing: ["error", "always", { "objectsInObjects": false }]*/
              
              var obj = { "foo": { "baz": 1, "bar": 2 }};

              When Not To Use It

              You can turn this rule off if you are not concerned with the consistency of spacing between curly braces.

              Related Rules

              There should be no space before '}'.
              Open

                    clients.matchAll({ type: 'window' }).then(windowClients => {
              Severity: Minor
              Found in src/model/ServiceWorker/push.sw.js by eslint

              enforce consistent spacing inside braces (object-curly-spacing)

              While formatting preferences are very personal, a number of style guides require or disallow spaces between curly braces in the following situations:

              // simple object literals
              var obj = { foo: "bar" };
              
              // nested object literals
              var obj = { foo: { zoo: "bar" } };
              
              // destructuring assignment (EcmaScript 6)
              var { x, y } = y;
              
              // import/export declarations (EcmaScript 6)
              import { foo } from "bar";
              export { foo };

              Rule Details

              This rule enforce consistent spacing inside braces of object literals, destructuring assignments, and import/export specifiers.

              Options

              This rule has two options, a string option and an object option.

              String option:

              • "never" (default) disallows spacing inside of braces
              • "always" requires spacing inside of braces (except {})

              Object option:

              • "arraysInObjects": true requires spacing inside of braces of objects beginning and/or ending with an array element (applies when the first option is set to never)
              • "arraysInObjects": false disallows spacing inside of braces of objects beginning and/or ending with an array element (applies when the first option is set to always)
              • "objectsInObjects": true requires spacing inside of braces of objects beginning and/or ending with an object element (applies when the first option is set to never)
              • "objectsInObjects": false disallows spacing inside of braces of objects beginning and/or ending with an object element (applies when the first option is set to always)

              never

              Examples of incorrect code for this rule with the default "never" option:

              /*eslint object-curly-spacing: ["error", "never"]*/
              
              var obj = { 'foo': 'bar' };
              var obj = {'foo': 'bar' };
              var obj = { baz: {'foo': 'qux'}, bar};
              var obj = {baz: { 'foo': 'qux'}, bar};
              var {x } = y;
              import { foo } from 'bar';

              Examples of correct code for this rule with the default "never" option:

              /*eslint object-curly-spacing: ["error", "never"]*/
              
              var obj = {'foo': 'bar'};
              var obj = {'foo': {'bar': 'baz'}, 'qux': 'quxx'};
              var obj = {
                'foo': 'bar'
              };
              var obj = {'foo': 'bar'
              };
              var obj = {
                'foo':'bar'};
              var obj = {};
              var {x} = y;
              import {foo} from 'bar';

              always

              Examples of incorrect code for this rule with the "always" option:

              /*eslint object-curly-spacing: ["error", "always"]*/
              
              var obj = {'foo': 'bar'};
              var obj = {'foo': 'bar' };
              var obj = { baz: {'foo': 'qux'}, bar};
              var obj = {baz: { 'foo': 'qux' }, bar};
              var obj = {'foo': 'bar'
              };
              var obj = {
                'foo':'bar'};
              var {x} = y;
              import {foo } from 'bar';

              Examples of correct code for this rule with the "always" option:

              /*eslint object-curly-spacing: ["error", "always"]*/
              
              var obj = {};
              var obj = { 'foo': 'bar' };
              var obj = { 'foo': { 'bar': 'baz' }, 'qux': 'quxx' };
              var obj = {
                'foo': 'bar'
              };
              var { x } = y;
              import { foo } from 'bar';

              arraysInObjects

              Examples of additional correct code for this rule with the "never", { "arraysInObjects": true } options:

              /*eslint object-curly-spacing: ["error", "never", { "arraysInObjects": true }]*/
              
              var obj = {"foo": [ 1, 2 ] };
              var obj = {"foo": [ "baz", "bar" ] };

              Examples of additional correct code for this rule with the "always", { "arraysInObjects": false } options:

              /*eslint object-curly-spacing: ["error", "always", { "arraysInObjects": false }]*/
              
              var obj = { "foo": [ 1, 2 ]};
              var obj = { "foo": [ "baz", "bar" ]};

              objectsInObjects

              Examples of additional correct code for this rule with the "never", { "objectsInObjects": true } options:

              /*eslint object-curly-spacing: ["error", "never", { "objectsInObjects": true }]*/
              
              var obj = {"foo": {"baz": 1, "bar": 2} };

              Examples of additional correct code for this rule with the "always", { "objectsInObjects": false } options:

              /*eslint object-curly-spacing: ["error", "always", { "objectsInObjects": false }]*/
              
              var obj = { "foo": { "baz": 1, "bar": 2 }};

              When Not To Use It

              You can turn this rule off if you are not concerned with the consistency of spacing between curly braces.

              Related Rules

              There should be no space after '{'.
              Open

                    $scroll_screen.css({ height:'calc(100vh + ' + $('#topbar').height() + 'px)' })
              Severity: Minor
              Found in src/view/app.view.js by eslint

              enforce consistent spacing inside braces (object-curly-spacing)

              While formatting preferences are very personal, a number of style guides require or disallow spaces between curly braces in the following situations:

              // simple object literals
              var obj = { foo: "bar" };
              
              // nested object literals
              var obj = { foo: { zoo: "bar" } };
              
              // destructuring assignment (EcmaScript 6)
              var { x, y } = y;
              
              // import/export declarations (EcmaScript 6)
              import { foo } from "bar";
              export { foo };

              Rule Details

              This rule enforce consistent spacing inside braces of object literals, destructuring assignments, and import/export specifiers.

              Options

              This rule has two options, a string option and an object option.

              String option:

              • "never" (default) disallows spacing inside of braces
              • "always" requires spacing inside of braces (except {})

              Object option:

              • "arraysInObjects": true requires spacing inside of braces of objects beginning and/or ending with an array element (applies when the first option is set to never)
              • "arraysInObjects": false disallows spacing inside of braces of objects beginning and/or ending with an array element (applies when the first option is set to always)
              • "objectsInObjects": true requires spacing inside of braces of objects beginning and/or ending with an object element (applies when the first option is set to never)
              • "objectsInObjects": false disallows spacing inside of braces of objects beginning and/or ending with an object element (applies when the first option is set to always)

              never

              Examples of incorrect code for this rule with the default "never" option:

              /*eslint object-curly-spacing: ["error", "never"]*/
              
              var obj = { 'foo': 'bar' };
              var obj = {'foo': 'bar' };
              var obj = { baz: {'foo': 'qux'}, bar};
              var obj = {baz: { 'foo': 'qux'}, bar};
              var {x } = y;
              import { foo } from 'bar';

              Examples of correct code for this rule with the default "never" option:

              /*eslint object-curly-spacing: ["error", "never"]*/
              
              var obj = {'foo': 'bar'};
              var obj = {'foo': {'bar': 'baz'}, 'qux': 'quxx'};
              var obj = {
                'foo': 'bar'
              };
              var obj = {'foo': 'bar'
              };
              var obj = {
                'foo':'bar'};
              var obj = {};
              var {x} = y;
              import {foo} from 'bar';

              always

              Examples of incorrect code for this rule with the "always" option:

              /*eslint object-curly-spacing: ["error", "always"]*/
              
              var obj = {'foo': 'bar'};
              var obj = {'foo': 'bar' };
              var obj = { baz: {'foo': 'qux'}, bar};
              var obj = {baz: { 'foo': 'qux' }, bar};
              var obj = {'foo': 'bar'
              };
              var obj = {
                'foo':'bar'};
              var {x} = y;
              import {foo } from 'bar';

              Examples of correct code for this rule with the "always" option:

              /*eslint object-curly-spacing: ["error", "always"]*/
              
              var obj = {};
              var obj = { 'foo': 'bar' };
              var obj = { 'foo': { 'bar': 'baz' }, 'qux': 'quxx' };
              var obj = {
                'foo': 'bar'
              };
              var { x } = y;
              import { foo } from 'bar';

              arraysInObjects

              Examples of additional correct code for this rule with the "never", { "arraysInObjects": true } options:

              /*eslint object-curly-spacing: ["error", "never", { "arraysInObjects": true }]*/
              
              var obj = {"foo": [ 1, 2 ] };
              var obj = {"foo": [ "baz", "bar" ] };

              Examples of additional correct code for this rule with the "always", { "arraysInObjects": false } options:

              /*eslint object-curly-spacing: ["error", "always", { "arraysInObjects": false }]*/
              
              var obj = { "foo": [ 1, 2 ]};
              var obj = { "foo": [ "baz", "bar" ]};

              objectsInObjects

              Examples of additional correct code for this rule with the "never", { "objectsInObjects": true } options:

              /*eslint object-curly-spacing: ["error", "never", { "objectsInObjects": true }]*/
              
              var obj = {"foo": {"baz": 1, "bar": 2} };

              Examples of additional correct code for this rule with the "always", { "objectsInObjects": false } options:

              /*eslint object-curly-spacing: ["error", "always", { "objectsInObjects": false }]*/
              
              var obj = { "foo": { "baz": 1, "bar": 2 }};

              When Not To Use It

              You can turn this rule off if you are not concerned with the consistency of spacing between curly braces.

              Related Rules

              There should be no space before '}'.
              Open

                    $scroll_screen.css({ height:'calc(100vh + ' + $('#topbar').height() + 'px)' })
              Severity: Minor
              Found in src/view/app.view.js by eslint

              enforce consistent spacing inside braces (object-curly-spacing)

              While formatting preferences are very personal, a number of style guides require or disallow spaces between curly braces in the following situations:

              // simple object literals
              var obj = { foo: "bar" };
              
              // nested object literals
              var obj = { foo: { zoo: "bar" } };
              
              // destructuring assignment (EcmaScript 6)
              var { x, y } = y;
              
              // import/export declarations (EcmaScript 6)
              import { foo } from "bar";
              export { foo };

              Rule Details

              This rule enforce consistent spacing inside braces of object literals, destructuring assignments, and import/export specifiers.

              Options

              This rule has two options, a string option and an object option.

              String option:

              • "never" (default) disallows spacing inside of braces
              • "always" requires spacing inside of braces (except {})

              Object option:

              • "arraysInObjects": true requires spacing inside of braces of objects beginning and/or ending with an array element (applies when the first option is set to never)
              • "arraysInObjects": false disallows spacing inside of braces of objects beginning and/or ending with an array element (applies when the first option is set to always)
              • "objectsInObjects": true requires spacing inside of braces of objects beginning and/or ending with an object element (applies when the first option is set to never)
              • "objectsInObjects": false disallows spacing inside of braces of objects beginning and/or ending with an object element (applies when the first option is set to always)

              never

              Examples of incorrect code for this rule with the default "never" option:

              /*eslint object-curly-spacing: ["error", "never"]*/
              
              var obj = { 'foo': 'bar' };
              var obj = {'foo': 'bar' };
              var obj = { baz: {'foo': 'qux'}, bar};
              var obj = {baz: { 'foo': 'qux'}, bar};
              var {x } = y;
              import { foo } from 'bar';

              Examples of correct code for this rule with the default "never" option:

              /*eslint object-curly-spacing: ["error", "never"]*/
              
              var obj = {'foo': 'bar'};
              var obj = {'foo': {'bar': 'baz'}, 'qux': 'quxx'};
              var obj = {
                'foo': 'bar'
              };
              var obj = {'foo': 'bar'
              };
              var obj = {
                'foo':'bar'};
              var obj = {};
              var {x} = y;
              import {foo} from 'bar';

              always

              Examples of incorrect code for this rule with the "always" option:

              /*eslint object-curly-spacing: ["error", "always"]*/
              
              var obj = {'foo': 'bar'};
              var obj = {'foo': 'bar' };
              var obj = { baz: {'foo': 'qux'}, bar};
              var obj = {baz: { 'foo': 'qux' }, bar};
              var obj = {'foo': 'bar'
              };
              var obj = {
                'foo':'bar'};
              var {x} = y;
              import {foo } from 'bar';

              Examples of correct code for this rule with the "always" option:

              /*eslint object-curly-spacing: ["error", "always"]*/
              
              var obj = {};
              var obj = { 'foo': 'bar' };
              var obj = { 'foo': { 'bar': 'baz' }, 'qux': 'quxx' };
              var obj = {
                'foo': 'bar'
              };
              var { x } = y;
              import { foo } from 'bar';

              arraysInObjects

              Examples of additional correct code for this rule with the "never", { "arraysInObjects": true } options:

              /*eslint object-curly-spacing: ["error", "never", { "arraysInObjects": true }]*/
              
              var obj = {"foo": [ 1, 2 ] };
              var obj = {"foo": [ "baz", "bar" ] };

              Examples of additional correct code for this rule with the "always", { "arraysInObjects": false } options:

              /*eslint object-curly-spacing: ["error", "always", { "arraysInObjects": false }]*/
              
              var obj = { "foo": [ 1, 2 ]};
              var obj = { "foo": [ "baz", "bar" ]};

              objectsInObjects

              Examples of additional correct code for this rule with the "never", { "objectsInObjects": true } options:

              /*eslint object-curly-spacing: ["error", "never", { "objectsInObjects": true }]*/
              
              var obj = {"foo": {"baz": 1, "bar": 2} };

              Examples of additional correct code for this rule with the "always", { "objectsInObjects": false } options:

              /*eslint object-curly-spacing: ["error", "always", { "objectsInObjects": false }]*/
              
              var obj = { "foo": { "baz": 1, "bar": 2 }};

              When Not To Use It

              You can turn this rule off if you are not concerned with the consistency of spacing between curly braces.

              Related Rules

              Severity
              Category
              Status
              Source
              Language