Skip to content

Commit

Permalink
npm audit fix everything
Browse files Browse the repository at this point in the history
  • Loading branch information
alessbelli committed Mar 29, 2023
1 parent 0552179 commit aca090f
Show file tree
Hide file tree
Showing 5 changed files with 5,206 additions and 7,869 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
test/
60 changes: 59 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,61 @@
{
"extends": "gulp"
"root": true,
"extends": [
"eslint:recommended"
],
"plugins": [
"node"
],
"parserOptions": {
"ecmaVersion": 2018
},
"env": {
"node": true,
"es2017": true
},
"rules": {
"node/no-unsupported-features/es-syntax": [
2,
{
"version": ">=0.10",
"ignores": [
"classes"
]
}
],
"block-scoped-var": 2,
"eqeqeq": [
2,
"smart"
],
"max-depth": [
1,
3
],
"max-statements": [
1,
30
],
"new-cap": 1,
"no-extend-native": 2,
"no-unused-vars": 1
},
"ignorePatterns": [
"coverage/**",
"test/fixtures/**"
],
"overrides": [
{
"files": [
"test/**"
],
"env": {
"mocha": true
},
"rules": {
"max-len": 0,
"max-statements": 0
}
}
]
}
Loading

0 comments on commit aca090f

Please sign in to comment.