Skip to content

Commit

Permalink
chore: use eslint strict
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Mar 15, 2021
1 parent b9bd8aa commit 9e94596
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
8 changes: 2 additions & 6 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
{
"extends": "eslint-config-atomic/react",
"ignorePatterns": ["dist/", "node_modules/"],
"rules": {
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-non-null-assertion": "off"
}
"extends": "eslint-config-atomic/strict-react",
"ignorePatterns": ["dist/", "node_modules/"]
}
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const RollupConfig = [
],
// loaded externally
external: ["atom"],
plugins: plugins,
plugins,
},
]
export default RollupConfig
2 changes: 1 addition & 1 deletion spec/main-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ describe("atom-ide-datatip tests", () => {
await atom.packages.activatePackage("atom-ide-datatip")
})

it("Activation", async function () {
it("Activation", function () {
expect(atom.packages.isPackageLoaded("atom-ide-datatip")).toBeTruthy()
})
})

0 comments on commit 9e94596

Please sign in to comment.