]> source.dussan.org Git - sonarqube.git/commitdiff
improve code quality
authorStas Vilchik <vilchiks@gmail.com>
Wed, 6 Jan 2016 15:25:06 +0000 (16:25 +0100)
committerStas Vilchik <vilchiks@gmail.com>
Wed, 6 Jan 2016 15:25:12 +0000 (16:25 +0100)
server/sonar-web/.eslintrc
server/sonar-web/src/main/js/apps/code/components/Search.js
server/sonar-web/src/main/js/apps/metrics/delete-view.js
server/sonar-web/src/main/js/helpers/handlebars/eachChanged.js
server/sonar-web/src/main/js/helpers/handlebars/ifHasExtraActions.js
server/sonar-web/src/main/js/helpers/handlebars/pluginActions.js
server/sonar-web/src/main/js/helpers/handlebars/sources.js

index 77cfb1f6eddbf639e5d274e0bfd11c96b0047a2a..439fd299c4c3cacd35815ccb9a10f95c35ba22a0 100644 (file)
@@ -55,7 +55,6 @@
 
     "react/jsx-closing-bracket-location": [1, "after-props"],
     "react/jsx-handler-names": 0,
-    "react/jsx-key": 2,
     "react/jsx-max-props-per-line": [1, { "maximum": 3 }],
     "react/jsx-no-duplicate-props": 2,
     "react/jsx-no-undef": 2,
@@ -73,7 +72,6 @@
     "react/sort-comp": 1,
 
     "import/no-unresolved": 2,
-    "import/named": 2,
     "import/export": 2,
     "import/no-duplicates": 2,
     "import/imports-first": 2
index e3bc76fd50279dce5f3e6b4020381a21c97b1fc6..2a6c602926fd428674769614997cd2a4f127b0a6 100644 (file)
@@ -17,7 +17,6 @@
  * along with this program; if not, write to the Free Software Foundation,
  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  */
-import _ from 'underscore';
 import React, { Component } from 'react';
 import { connect } from 'react-redux';
 
index de66c3b36fbeb1fa7708b054195a6c5d068da25d..aa28d8b87adc70bc313cb5e6ded4af441b6d4363 100644 (file)
@@ -23,7 +23,7 @@ import Template from './templates/metrics-delete.hbs';
 export default ModalForm.extend({
   template: Template,
 
-  onFormSubmit: function (e) {
+  onFormSubmit: function () {
     ModalForm.prototype.onFormSubmit.apply(this, arguments);
     this.sendRequest();
   },
@@ -45,5 +45,3 @@ export default ModalForm.extend({
     });
   }
 });
-
-
index 5fd46cfdbb9c736b461f5e43b7ee097dd5f17835..ed9efe1326cd23ce75da7b1259a3d6b2130f2875 100644 (file)
@@ -17,6 +17,8 @@
  * along with this program; if not, write to the Free Software Foundation,
  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  */
+import _ from 'underscore';
+
 module.exports = function (context, property, options) {
   var ret = '';
   context.forEach(function (d, i) {
index 00408023dd6dc0b202c4bbbd29572f9d695e624d..3775d91df9ac94b50289bbd51c2d1cba7bb29f05 100644 (file)
@@ -17,6 +17,8 @@
  * along with this program; if not, write to the Free Software Foundation,
  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  */
+import _ from 'underscore';
+
 const DEFAULT_ACTIONS = ['comment', 'assign', 'assign_to_me', 'plan', 'set_severity', 'set_tags'];
 
 module.exports = function (actions, options) {
index eec12b6d318048212c5241189b0619559a145b3f..66ce7d40fe3b1b3ba3816d27fe50f2542f8ceeb2 100644 (file)
@@ -17,6 +17,8 @@
  * along with this program; if not, write to the Free Software Foundation,
  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  */
+import _ from 'underscore';
+
 const DEFAULT_ACTIONS = ['comment', 'assign', 'assign_to_me', 'plan', 'set_severity', 'set_tags'];
 
 module.exports = function (actions, options) {
index 09f8f0d57ec3e472fe3236c876869c84e1766d9a..2aac07987e32efb3fce1b4a0baff40d3ae803c21 100644 (file)
@@ -17,6 +17,8 @@
  * along with this program; if not, write to the Free Software Foundation,
  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  */
+import _ from 'underscore';
+
 module.exports = function (source, scm, options) {
   if (options == null) {
     options = scm;