1. 04 Nov, 2016 7 commits
    • Alfredo Sumaran's avatar
      Merge branch 'patch-9' into 'master' · a04a451f
      Alfredo Sumaran authored
      Add tip for using Chrome to run and debug teaspoon tests.
      
      ## What does this MR do?
      
      Documents the approach I use when writing and debugging frontend tests, which is (IMHO) much better than running locally from the command line.
      
      See merge request !7257
      a04a451f
    • Alfredo Sumaran's avatar
      Merge branch 'ignore-build-dir-eslint' into 'master' · b0f89867
      Alfredo Sumaran authored
      Ignore `builds` directory from eslint
      
      Running `rake eslint` locally was including this directory reporting so many errors that are not from our source code.
      
      See merge request !7279
      b0f89867
    • Alfredo Sumaran's avatar
      Ignore builds directory from eslint · b27de4ab
      Alfredo Sumaran authored
      b27de4ab
    • Bryce Johnson's avatar
    • Alfredo Sumaran's avatar
      Merge branch 'fix-invalid-filename-eslint' into 'master' · 3a8a7c12
      Alfredo Sumaran authored
      eslint: Fix invalid filename validation
      
      Attempt to fix the following error which is appearing in every new MR since `eslint-plugin-filenames` was introduced.
      
      ```
      /builds/gitlab-org/gitlab-ce/app/assets/javascripts/gl_field_error.js.es6
        2:1  error  Filename 'gl_field_error.js.es6' does not match the naming convention  filenames/match-regex
      ```
      
      This was happening because our ES6 files have the following structure `gl_hello_world.js.es6`. So `eslint-plugin-filenames` was considering as base name `gl_hello_world.js` which didn't pass the previous regex `^[a-z_]+$`
      
      This new regex allows the following filenames to pass as valid:
      
      - `gl_hello_world.js.es6` which base name translates to `gl_hello_world.js` 
      -  `gl_foo_bar.js` which base name translates to `gl_foo_bar`
      -  `d3.js` which base name translates to `d3` (especial case, maybe we should move this to the vendor dir and make the regex more specific)
      
      See merge request !7281
      3a8a7c12
    • Alfredo Sumaran's avatar
      Add CHANGELOG entry file · 99a000da
      Alfredo Sumaran authored
      99a000da
    • Alfredo Sumaran's avatar
      Add jquery.timeago.js to application.js · 6e1802d0
      Alfredo Sumaran authored
      6e1802d0
  2. 03 Nov, 2016 32 commits
  3. 02 Nov, 2016 1 commit