Skip to content

Commit

Permalink
pipeline fix
Browse files Browse the repository at this point in the history
  • Loading branch information
maphel committed Sep 4, 2023
1 parent b243fc2 commit f9277d5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"node": true
},
"rules": {
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-ts-comment": "off",
"no-console": "warn",
Expand Down Expand Up @@ -44,8 +45,6 @@
"import/resolver": {
"node": {
"extensions": [
".js",
".jsx",
".ts",
".tsx"
]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"test": "jest --coverage",
"build": "tsc",
"prepublish": "yarn build",
"lint": "eslint src/**/*.{js,jsx,ts,tsx} --fix",
"lint": "eslint src/**/*.ts --fix",
"prettier": "prettier --write \"src/**/*.ts\""
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/classes/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ describe("c", () => {
).toBe("class1 class2 class4")
})

it('should ignore object arguments with non-boolean values except strings like "true" or "false" or "1" or "2"', () => {
it("should ignore object arguments with non-boolean values except strings like 'true' or 'false' or '1' or '2''", () => {
expect(c({ class1: "true", class2: 123, class3: "1" } as any)).toBe("class1 class3")
})

Expand Down

0 comments on commit f9277d5

Please sign in to comment.