rofrischmann/inline-style-prefixer

View on GitHub

Showing 161 of 397 total issues

Consider simplifying this complex logical expression.
Open

  if (typeof value === 'string' && value.indexOf('calc(') > -1 && (browserName === 'firefox' && browserVersion < 15 || browserName === 'chrome' && browserVersion < 25 || browserName === 'safari' && browserVersion < 6.1 || browserName === 'ios_saf' && browserVersion < 7)) {
    return (0, _getPrefixedValue2.default)(value.replace(/calc\(/g, cssPrefix + 'calc('), value, keepUnprefixed);
  }
Severity: Critical
Found in benchmark/packages/300/dynamic/plugins/calc.js - About 2 hrs to fix

    Consider simplifying this complex logical expression.
    Open

      if (browserName === 'chrome' && browserVersion < 43 || (browserName === 'safari' || browserName === 'ios_saf') && browserVersion < 9 || browserName === 'opera' && browserVersion < 30 || browserName === 'android' && browserVersion <= 4.4 || browserName === 'and_uc') {
        return cssPrefix + prefixedKeyframes;
      }
    Severity: Critical
    Found in benchmark/packages/300/utils/getPrefixedKeyframes.js - About 2 hrs to fix

      Consider simplifying this complex logical expression.
      Open

        if (browser === 'chrome' && version < 43 || (browser === 'safari' || browser === 'ios_saf') && version < 9 || browser === 'opera' && version < 30 || browser === 'android' && version <= 4.4 || browser === 'and_uc') {
          prefixedKeyframes = prefix.css + prefixedKeyframes;
        }
      Severity: Critical
      Found in benchmark/packages/205/utils/getPrefixedKeyframes.js - About 2 hrs to fix

        Function testBundle has 44 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        const testBundle = name => new Promise((resolve, reject) => {
          const compiler = webpack({
            context: __dirname,
            entry: { [name]: [`./${name}.js`] },
            module: {
        Severity: Minor
        Found in benchmark/size/index.js - About 1 hr to fix

          Function flexboxIE has 41 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          export default function flexboxIE(property, value, style): void {
            if (alternativeProps.hasOwnProperty(property)) {
              style[alternativeProps[property]] = alternativeValues[value] || value
            }
          
          
          Severity: Minor
          Found in modules/plugins/flexboxIE.js - About 1 hr to fix

            Function prefix has 40 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                value: function prefix(styles) {
                  var _this2 = this;
            
                  // use prefixAll as fallback if userAgent can not be resolved
                  if (this._usePrefixAllFallback) {
            Severity: Minor
            Found in benchmark/packages/205/Prefixer.js - About 1 hr to fix

              Function _slicedToArray has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
              Open

              var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }();
              Severity: Minor
              Found in benchmark/packages/700/plugins/grid.js - About 1 hr 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

              Function generatePrefixMap has 39 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              export default function generatePrefixMap(browserList) {
                const prefixMap = {}
              
                for (const browser in prefixBrowserMap) {
                  const prefix = prefixBrowserMap[browser]
              Severity: Minor
              Found in modules/generator/generatePrefixMap.js - About 1 hr to fix

                Function flexboxIE has 37 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                function flexboxIE(property, value, style) {
                  if (Object.prototype.hasOwnProperty.call(alternativeProps, property)) {
                    style[alternativeProps[property]] = alternativeValues[value] || value;
                  }
                  if (property === 'flex') {
                Severity: Minor
                Found in benchmark/packages/700/plugins/flexboxIE.js - About 1 hr to fix

                  Function prefixValue has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                  Open

                  function prefixValue(value, propertyPrefixMap) {
                    if ((0, _isPrefixedValue2.default)(value)) {
                      return value;
                    }
                  
                  
                  Severity: Minor
                  Found in benchmark/packages/300/static/plugins/transition.js - About 1 hr 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

                  Function prefixValue has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                  Open

                  function prefixValue(value, propertyPrefixMap) {
                    if ((0, _isPrefixedValue2.default)(value)) {
                      return value;
                    }
                  
                  
                  Severity: Minor
                  Found in benchmark/packages/302/static/plugins/transition.js - About 1 hr 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

                  Function prefixValue has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                  Open

                  function prefixValue(value, propertyPrefixMap) {
                    if (isPrefixedValue(value)) {
                      return value
                    }
                  
                  
                  Severity: Minor
                  Found in modules/plugins/transition.js - About 1 hr 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

                  Function prefixValue has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                  Open

                  function prefixValue(value, propertyPrefixMap) {
                    if ((0, _isPrefixedValue2.default)(value)) {
                      return value;
                    }
                  
                  
                  Severity: Minor
                  Found in benchmark/packages/700/plugins/transition.js - About 1 hr 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

                  Function prefixValue has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                  Open

                  function prefixValue(value, propertyPrefixMap) {
                    if ((0, _isPrefixedValue2.default)(value)) {
                      return value;
                    }
                  
                  
                  Severity: Minor
                  Found in benchmark/packages/301/static/plugins/transition.js - About 1 hr 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

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

                    return function prefix(style) {
                      for (const property in style) {
                        const value = style[property]
                  
                        // handle nested objects
                  Severity: Minor
                  Found in modules/createPrefixer.js - About 1 hr to fix

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

                        function Prefixer() {
                          var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
                    
                          _classCallCheck(this, Prefixer);
                    
                    
                    Severity: Minor
                    Found in benchmark/packages/301/dynamic/createPrefixer.js - About 1 hr to fix

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

                          function Prefixer() {
                            var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
                      
                            _classCallCheck(this, Prefixer);
                      
                      
                      Severity: Minor
                      Found in benchmark/packages/302/dynamic/createPrefixer.js - About 1 hr to fix

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

                            function Prefixer() {
                              var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
                        
                              _classCallCheck(this, Prefixer);
                        
                        
                        Severity: Minor
                        Found in benchmark/packages/300/dynamic/createPrefixer.js - About 1 hr to fix

                          Consider simplifying this complex logical expression.
                          Open

                            if (typeof value === 'string' && value.indexOf('image-set(') > -1 && (browserName === 'chrome' || browserName === 'opera' || browserName === 'and_chr' || browserName === 'and_uc' || browserName === 'ios_saf' || browserName === 'safari')) {
                              return (0, _getPrefixedValue2.default)(value.replace(/image-set\(/g, cssPrefix + 'image-set('), value, keepUnprefixed);
                            }
                          Severity: Critical
                          Found in benchmark/packages/301/dynamic/plugins/imageSet.js - About 1 hr to fix

                            Consider simplifying this complex logical expression.
                            Open

                              if (typeof value === 'string' && value.indexOf('cross-fade(') > -1 && (browserName === 'chrome' || browserName === 'opera' || browserName === 'and_chr' || (browserName === 'ios_saf' || browserName === 'safari') && browserVersion < 10)) {
                                return (0, _getPrefixedValue2.default)(value.replace(/cross-fade\(/g, cssPrefix + 'cross-fade('), value, keepUnprefixed);
                              }
                            Severity: Critical
                            Found in benchmark/packages/302/dynamic/plugins/crossFade.js - About 1 hr to fix
                              Severity
                              Category
                              Status
                              Source
                              Language