Increase hitSlop of menu icon and navigation arrows

This commit is contained in:
Lisa
2020-12-05 10:08:24 +00:00
committed by Maria Zadnepryanets
parent 59ee05eb1f
commit 3778c1454f
5 changed files with 49 additions and 64 deletions
+9 -25
View File
@@ -4,10 +4,7 @@
"mocha": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"extends": ["eslint:recommended", "plugin:react/recommended"],
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module",
@@ -16,31 +13,18 @@
},
"ecmaVersion": 2018
},
"plugins": [
"react"
],
"plugins": ["react"],
"settings": {
"react": {
"version": require('./package.json').dependencies.react,
},
"version": require("./package.json").dependencies.react
}
},
"rules": {
"indent": [
"error",
2
],
"no-console": [
"error",
{ allow: ["warn", "error"] }
],
"indent": ["error", 2],
"no-console": ["error", { "allow": ["warn", "error"] }],
"space-before-function-paren": 0,
"semi": [
"warn",
"never"
],
"space-infix-ops": [
"warn"
],
"semi": ["warn", "never"],
"space-infix-ops": ["warn"],
"no-var": "error",
"prefer-const": "error",
"no-trailing-spaces": "error",
@@ -53,6 +37,6 @@
"ignoreTemplateLiterals": true
}
],
"no-multi-spaces": 2,
"no-multi-spaces": 2
}
}