Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
davidchambers committed Jan 8, 2024
1 parent 90eb19d commit 54ecc17
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 25 deletions.
21 changes: 1 addition & 20 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,7 @@
"root": true,
"extends": ["./node_modules/sanctuary-style/eslint.json"],
"parserOptions": {"ecmaVersion": 2020, "sourceType": "module"},
"env": {"node": true},
"overrides": [
{
"files": ["*.md"],
"globals": {
"Flag": "readonly",
"Just": "readonly",
"Left": "readonly",
"Nothing": "readonly",
"Option": "readonly",
"Pair": "readonly",
"Right": "readonly",
"conf": "readonly",
"parseArgs": "readonly",
"spec": "readonly"
},
"rules": {
"key-spacing": ["off"],
"no-unused-vars": ["error", {"args": "none", "varsIgnorePattern": "^(conf|spec)$"}]
}
},
{
"files": ["index.js"],
"rules": {
Expand All @@ -32,6 +12,7 @@
{
"files": ["test/index.js"],
"rules": {
"max-len": ["off"],
"object-property-newline": ["off"]
}
}
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
/.nyc_output/
/coverage/
/node_modules/
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,7 @@ def ('parseArgs')
}
}
}
/* c8 ignore next */
});

// > names ('--color')
Expand Down
5 changes: 1 addition & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"devDependencies": {
"sanctuary-maybe": "2.1.x",
"sanctuary-scripts": "6.0.x",
"sanctuary-scripts": "7.0.x",
"sanctuary-show": "3.0.x",
"sanctuary-type-classes": "13.0.x"
},
Expand All @@ -31,8 +31,5 @@
"lint": "sanctuary-lint",
"release": "sanctuary-release",
"test": "npm run lint && sanctuary-test && npm run doctest"
},
"mocha": {
"ui": "tdd"
}
}
1 change: 1 addition & 0 deletions test/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import assert from 'assert';

import test from 'oletus';
import Maybe from 'sanctuary-maybe';
import show from 'sanctuary-show';
import Z from 'sanctuary-type-classes';
Expand Down

0 comments on commit 54ecc17

Please sign in to comment.