Skip to content
Snippets Groups Projects
  • Tom Robinson's avatar
    ff12c03c
    Query Builder 2.0 [WIP] (#4496) · ff12c03c
    Tom Robinson authored
    * QB modes, actions, and drill throughs.
    
    * Refactor drill throughs + misc bug fixes
    
    * Port sort action to drills
    
    * Smarter 'view this/these' name
    
    * Scalar hover state
    
    * QB actions: don't skip action selection screen unless the action is marked as 'default'
    
    * Fix flow errors
    
    * Fix drills
    
    * Show "This X's Ys" for FKs
    
    * Prevent qb from uneccesary push states
    
    * Don't show (fk) breakout fields that have already been broken out
    
    * Fix 'drill into this' unit
    
    * Cleanup timeseries footer
    
    * Cleanup qb selectors
    
    * Namespace all qb actions
    
    * Make modes dependent on previously run card
    
    * More timeseries footer cleanup
    
    * Fix table crash
    
    * Make breakout legend clickable
    
    * Fix datagrid pivot test
    
    * Flow + lint
    ff12c03c
    History
    Query Builder 2.0 [WIP] (#4496)
    Tom Robinson authored
    * QB modes, actions, and drill throughs.
    
    * Refactor drill throughs + misc bug fixes
    
    * Port sort action to drills
    
    * Smarter 'view this/these' name
    
    * Scalar hover state
    
    * QB actions: don't skip action selection screen unless the action is marked as 'default'
    
    * Fix flow errors
    
    * Fix drills
    
    * Show "This X's Ys" for FKs
    
    * Prevent qb from uneccesary push states
    
    * Don't show (fk) breakout fields that have already been broken out
    
    * Fix 'drill into this' unit
    
    * Cleanup timeseries footer
    
    * Cleanup qb selectors
    
    * Namespace all qb actions
    
    * Make modes dependent on previously run card
    
    * More timeseries footer cleanup
    
    * Fix table crash
    
    * Make breakout legend clickable
    
    * Fix datagrid pivot test
    
    * Flow + lint
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
.eslintrc 1.69 KiB
{
    "rules": {
        "strict": [2, "never"],
        "no-undef": 2,
        "no-unused-vars": [1, {"vars": "all", "args": "none", "varsIgnorePattern": "^(React|PropTypes|Component)$"}],
        "import/no-commonjs": 1,
        "quotes": 0,
        "camelcase": 0,
        "eqeqeq": 0,
        "key-spacing": 0,
        "no-underscore-dangle": 0,
        "curly": 0,
        "no-use-before-define": 0,
        "comma-dangle": 0,
        "space-infix-ops": 0,
        "no-shadow": 0,
        "no-empty": 0,
        "no-extra-bind": 0,
        "eol-last": 0,
        "consistent-return": 0,
        "yoda": 0,
        "no-multi-spaces": 0,
        "no-mixed-spaces-and-tabs": 0,
        "no-alert": 0,
        "no-console": 0,
        "dot-notation": 0,
        "space-unary-ops": 0,
        "semi": 0,
        "global-strict": 0,
        "new-cap": 0,
        "no-fallthrough": 0,
        "no-case-declarations": 0,
        "react/no-is-mounted": 2,
        "react/prefer-es6-class": 2,
        "react/display-name": 1,
        "react/prop-types": 0,
        "react/no-did-mount-set-state": 0,
        "react/no-did-update-set-state": 0,
        "react/no-find-dom-node": 0,
        "flowtype/define-flow-type": 1,
        "flowtype/use-flow-type": 1
    },
    "globals": {
    },
    "env": {
        "browser": true,
        "es6": true,
        "commonjs": true,
        "jest": true
    },
    "parser": "babel-eslint",
    "plugins": [
        "react",
        "flowtype"
    ],
    "extends": [
      "eslint:recommended",
      "plugin:react/recommended",
      "plugin:import/errors",
      "plugin:import/warnings"
    ],
    "settings": {
      "import/resolver": "webpack",
      "import/ignore": ["\\.css$"]
    }
}