Skip to content

Commit 9e94596

Browse files
committed
chore: use eslint strict
1 parent b9bd8aa commit 9e94596

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

.eslintrc.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
{
2-
"extends": "eslint-config-atomic/react",
3-
"ignorePatterns": ["dist/", "node_modules/"],
4-
"rules": {
5-
"@typescript-eslint/no-inferrable-types": "off",
6-
"@typescript-eslint/no-non-null-assertion": "off"
7-
}
2+
"extends": "eslint-config-atomic/strict-react",
3+
"ignorePatterns": ["dist/", "node_modules/"]
84
}

rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const RollupConfig = [
1414
],
1515
// loaded externally
1616
external: ["atom"],
17-
plugins: plugins,
17+
plugins,
1818
},
1919
]
2020
export default RollupConfig

spec/main-spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ describe("atom-ide-datatip tests", () => {
1414
await atom.packages.activatePackage("atom-ide-datatip")
1515
})
1616

17-
it("Activation", async function () {
17+
it("Activation", function () {
1818
expect(atom.packages.isPackageLoaded("atom-ide-datatip")).toBeTruthy()
1919
})
2020
})

0 commit comments

Comments
 (0)