Skip to content

Commit

Permalink
Fix ignore warnings (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
ImLunaHey authored and RoccoC committed May 30, 2024
1 parent d580d13 commit fd16134
Show file tree
Hide file tree
Showing 14 changed files with 8,285 additions and 8,213 deletions.
25 changes: 25 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"env": {
"es2021": true,
"node": true
},
"extends": ["airbnb-base", "airbnb-typescript/base"],
"parserOptions": {
"project": "./tsconfig.json",
"ecmaVersion": 12,
"sourceType": "module"
},
"overrides": [
{
"files": ["*.ts"],
"rules": {
"max-len": [
"error",
{
"code": 125
}
]
}
}
]
}
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

#### 3.0.0

###### _May 27, 2024_

- Added support for Webpack 5.
- Bumped node-notifier to v10.0.1.
- Fixes for [#81](/../../issues/81) and [#90](/../../issues/90))
- Thanks, [ImLunaHey](https://github.com/ImLunaHey)! ([PR](/../../pull/91))

#### 2.3.0

###### _June 19, 2021_
Expand Down
6 changes: 3 additions & 3 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module.exports = {
module.exports= {
clearMocks: true,
collectCoverage: true,
collectCoverageFrom: ["src/index.ts"],
coverageDirectory: "coverage",
moduleFileExtensions: ["js", "ts"],
testEnvironment: "node",
"transform": {
"^.+\\.ts?$": "ts-jest"
transform: {
"^.+\\.ts?$": "ts-jest",
},
};
Loading

0 comments on commit fd16134

Please sign in to comment.