Skip to content

Commit

Permalink
chore: remove grunt, update dependencies, bump version to 2.1.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
balassy committed Aug 16, 2020
1 parent 359145f commit b9e4007
Show file tree
Hide file tree
Showing 8 changed files with 805 additions and 4,072 deletions.
21 changes: 13 additions & 8 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
{
"extends": "airbnb-base",
"root": true,
"env": {
"browser": true
},
"extends": [
"airbnb-base"
],
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
},
"rules": {
"linebreak-style": ["off"],
"comma-dangle": ["error", "never"],
"linebreak-style": ["off"],
"no-underscore-dangle": ["off"]
},
"env": {
"browser": true,
"node": true,
"es6": true
}
}
}
23 changes: 23 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"default": true,
"line-length": false,
"blanks-around-headers": false,
"no-duplicate-header": false,
"no-inline-html": false,
"MD010": false,
"MD001": false,
"MD031": false,
"MD040": false,
"MD002": false,
"MD029": false,
"MD041": false,
"MD032": false,
"MD036": false,
"MD037": false,
"MD009": false,
"MD018": false,
"MD012": false,
"MD026": false,
"MD034": false,
"MD038": false
}
5 changes: 0 additions & 5 deletions .stylelintrc

This file was deleted.

8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,19 @@
All notable changes to this project is documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [2.1.1]

This is a maintenance release to modernize the development environment. There are no changes in the code of the module so these updates should not affec the functionality of the module.
- Get rid of Grunt, use native npm scripts instead to run the linters.
- Update all dependencies to the latest versions.

## [2.1.0]

- Allow stock change to be shown as percent - thanks to [Reese Wells](https://github.com/ducoterra).

## [2.0.1]

This is a maintenance release that updates all third party developer dependencies to the latest version and fix security vulnerability [CVE-2019-10744 ](https://github.com/lodash/lodash/pull/4336) in the third-party developer dependency `lodash` module.
This is a maintenance release that updates all third party developer dependencies to the latest version and fix security vulnerability [CVE-2019-10744](https://github.com/lodash/lodash/pull/4336) in the third-party developer dependency `lodash` module.

This change should not affect the functionality of the module.

Expand Down
68 changes: 0 additions & 68 deletions Gruntfile.js

This file was deleted.

10 changes: 2 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,16 +96,10 @@ Although for operation this module does not depend on any other module, if you w
npm install
```

2. Install Grunt:
2. Run all linters:

```bash
npm install -g grunt
```

3. Use Grunt to run all linters:

```bash
grunt
npm run lint
```

## Got feedback?
Expand Down
Loading

0 comments on commit b9e4007

Please sign in to comment.