Skip to content

Commit

Permalink
lib: node 18 support
Browse files Browse the repository at this point in the history
  • Loading branch information
indutny committed May 10, 2022
1 parent 43e4423 commit 4de50ae
Show file tree
Hide file tree
Showing 6 changed files with 2,970 additions and 284 deletions.
29 changes: 29 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
module.exports = {
'env': {
'browser': true,
'commonjs': true,
'es2021': true
},
'extends': 'eslint:recommended',
'parserOptions': {
'ecmaVersion': 'latest'
},
'rules': {
'indent': [
'error',
2
],
'linebreak-style': [
'error',
'unix'
],
'quotes': [
'error',
'single'
],
'semi': [
'error',
'always'
]
}
};
9 changes: 4 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
sudo: false
language: node_js
node_js:
- "0.8"
- "0.10"
- "0.12"
- "4"
- "6"
- "12"
- "14"
- "16"
- "18"

before_install:
- travis_retry npm install -g [email protected]
Expand Down
Loading

0 comments on commit 4de50ae

Please sign in to comment.