Skip to content
This repository has been archived by the owner on Jul 3, 2019. It is now read-only.

Commit

Permalink
Merge branch 'release/5.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
jansiegel committed Sep 12, 2018
2 parents 49a8488 + 2296241 commit b58392f
Show file tree
Hide file tree
Showing 191 changed files with 8,883 additions and 9,154 deletions.
209 changes: 0 additions & 209 deletions .eslintrc

This file was deleted.

92 changes: 92 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
module.exports = {
"extends": "airbnb-base",
"parser": "babel-eslint",
"env": {
"browser": true,
"commonjs": true,
"jasmine": true,
"jest": true,
"es6": true,
},
"rules": {
"arrow-parens": [
"error",
"as-needed",
{ "requireForBlockBody": true }
],
"class-methods-use-this": "off",
"comma-dangle": "off",
"consistent-return": "off",
"func-names": "off",
"import/extensions": "off",
"import/no-extraneous-dependencies": "off",
"import/no-unresolved": [
"error",
{ "ignore": ["handsontable", "walkontable"] }
],
"indent": [
"error",
2,
{
"SwitchCase": 1,
"FunctionDeclaration": { "parameters": "first" },
"FunctionExpression": { "parameters": "first" }
}
],
"max-len": [
"error",
{
"code": 170,
"ignoreComments": true
}
],
"newline-per-chained-call": "off",
"no-constant-condition": [
"error",
{ "checkLoops": false }
],
"no-eq-null": "error",
"no-mixed-operators": [
"error",
{ "groups": [["+", "-", "*", "/", "%", "**"]] }
],
"no-multiple-empty-lines": [
"error",
{ "max": 1 }
],
"no-param-reassign": "off",
"no-plusplus": [
"error",
{ "allowForLoopAfterthoughts": true }
],
"no-restricted-globals": [
"error",
"Handsontable",
{
"name": "console",
"message": "Using the `console` object is not allowed within Handsontable. Please use one of the helpers from the `console.js` file instead."
}
],
"no-underscore-dangle": "off",
"no-use-before-define": [
"error",
{
"functions": false,
"classes": false
}
],
"no-void": "off",
"padded-blocks": "off",
"quotes": [ "error", "single" ],
"space-before-function-paren": ["error", "never"],
},
"overrides": [
{
"files": ["test/**", "src/3rdparty/walkontable/test/**", "*.unit.js", "*.e2e.js", "src/plugins/**/test/helpers/**"],
"rules": {
"no-restricted-globals": "off",
"no-undef": "off",
}
}
],
}
4 changes: 2 additions & 2 deletions dist/handsontable.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/handsontable.full.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
* RELIABILITY AND PERFORMANCE WILL MEET YOUR REQUIREMENTS OR THAT THE OPERATION OF THE SOFTWARE WILL BE
* UNINTERRUPTED OR ERROR FREE.
*
* Version: 5.0.1
* Release date: 16/08/2018 (built at 16/08/2018 12:38:43)
* Version: 5.0.2
* Release date: 12/09/2018 (built at 12/09/2018 12:36:00)
*/
/**
* Fix for bootstrap styles
Expand Down
Loading

0 comments on commit b58392f

Please sign in to comment.