mirror of
https://github.com/holidayapi/holidayapi-node.git
synced 2025-06-21 12:36:33 +00:00
* chore: Updated dependencies. * test: Fixed a linter issue in the test suite. * feat: Updated all requests to contain the `search` property. * chore: Cleaned up some of the type properties order (alphabetized). * test: Added tests to cover the search capabilities. * docs: Added examples to the readme to cover all endpoints as well as search. * docs: Updated the readme to cover migrating from v1 to v2. * docs: Fixed repository links where applicable. * chore: Bumped the minor version number.
35 lines
807 B
JSON
35 lines
807 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true,
|
|
"jest/globals": true,
|
|
"node": true
|
|
},
|
|
"extends": [
|
|
"airbnb-base",
|
|
"plugin:import/typescript"
|
|
],
|
|
"globals": {
|
|
"Atomics": "readonly",
|
|
"SharedArrayBuffer": "readonly"
|
|
},
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018,
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": [
|
|
"@typescript-eslint",
|
|
"jest"
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/no-unused-vars": "error",
|
|
"import/no-extraneous-dependencies": [
|
|
"error",
|
|
{ "devDependencies": ["**/*.test.ts"] }
|
|
],
|
|
"import/prefer-default-export": "off",
|
|
"lines-between-class-members": "off",
|
|
"no-unused-vars": "off"
|
|
}
|
|
}
|