Skip to content
This repository was archived by the owner on Jul 15, 2021. It is now read-only.

Commit 8d4ee91

Browse files
committed
Merge branch 'release/1.0.3'
2 parents 60cfa73 + f44a716 commit 8d4ee91

File tree

5 files changed

+36
-3
lines changed

5 files changed

+36
-3
lines changed

.codeclimate.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
engines:
3+
duplication:
4+
enabled: true
5+
config:
6+
languages:
7+
- ruby
8+
- javascript
9+
- python
10+
- php
11+
eslint:
12+
enabled: true
13+
fixme:
14+
enabled: true
15+
ratings:
16+
paths:
17+
- "**.inc"
18+
- "**.js"
19+
- "**.jsx"
20+
- "**.module"
21+
- "**.php"
22+
- "**.py"
23+
- "**.rb"
24+
exclude_paths:
25+
- dist/
26+
- test/
27+
- src/grammar-parser/

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
**/*{.,-}min.js

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ node_js:
77

88
before_script:
99
- "npm update -g npm"
10+
- "npm install -g codeclimate-test-reporter"
1011
- "export DISPLAY=:99.0"
1112
- "export TZ=Europe/Warsaw"
1213
- "sh -e /etc/init.d/xvfb start"
14+
15+
after_success:
16+
- "npm run coverage"
17+
- "codeclimate-test-reporter < coverage/lcov.info"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Formula Parser [![Build Status](https://travis-ci.org/handsontable/formula-parser.png?branch=master)](https://travis-ci.org/handsontable/formula-parser)
1+
Formula Parser [![Build Status](https://travis-ci.org/handsontable/formula-parser.png?branch=master)](https://travis-ci.org/handsontable/formula-parser) [![Test Coverage](https://codeclimate.com/repos/57739f5a0fbc62007d005f05/badges/35e70c68c984c6d7580b/coverage.svg)](https://codeclimate.com/repos/57739f5a0fbc62007d005f05/coverage) [![hot-formula-parser](https://img.shields.io/npm/v/hot-formula-parser.svg)](https://www.npmjs.com/package/hot-formula-parser)
22
==========
33
Library provides a `Parser` class that evaluates excel and mathematical formulas.
44

@@ -38,7 +38,7 @@ It supports:
3838
* Logical operations like `AND()`, `OR()`, `NOT()`, `XOR()`;
3939
* Comparison operations like `=`, `>`, `>=`, `<`, `<=`, `<>`;
4040
* All JavaScript Math constants like `PI()`, `E()`, `LN10()`, `LN2()`, `LOG10E()`, `LOG2E()`, `SQRT1_2()`, `SQRT2()`;
41-
* String operations like `&` (concatenation eq. `parser.parse('-(2&5)');` will returns `-25`);
41+
* String operations like `&` (concatenation eq. `parser.parse('-(2&5)');` will return `-25`);
4242
* All excel formulas defined in [formula.js](https://github.com/handsontable/formula.js);
4343
* Relative and absolute cell coordinates like `A1`, `$A1`, `A$1`, `$A$1`;
4444
* Build-in variables like `TRUE`, `FALSE`, `NULL`

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hot-formula-parser",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "Formula parser",
55
"main": "dist/formula-parser.js",
66
"scripts": {

0 commit comments

Comments
 (0)