Skip to content

Commit

Permalink
chore: enable naming-conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
jkoenig134 committed Sep 10, 2021
1 parent ed4cdd6 commit acf19f9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ module.exports = {
"@typescript-eslint/require-array-sort-compare": ["error", { ignoreStringArrays: true }],
"@typescript-eslint/switch-exhaustiveness-check": "warn",
"@typescript-eslint/return-await": ["error", "always"],
"no-return-await": "off",
"return-await": "off",
"require-await": "off",
"@typescript-eslint/require-await": "error",
quotes: "off",
Expand All @@ -67,6 +67,9 @@ module.exports = {
allowArgumentsExplicitlyTypedAsAny: true
}
],
"@typescript-eslint/no-empty-function": "error",
"no-empty-function": "off",
"@typescript-eslint/naming-convention": "error",
indent: [
"error",
4,
Expand Down Expand Up @@ -117,6 +120,6 @@ module.exports = {
],
"no-invalid-this": "off",
"quote-props": ["error", "as-needed"],
"no-empty-function": "error"
"new-cap": "off"
}
}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@js-soft/eslint-config-ts",
"version": "1.0.5",
"version": "1.0.8",
"description": "j&s-soft typescript linting rules",
"license": "MIT",
"author": "js-soft GmbH",
Expand Down

0 comments on commit acf19f9

Please sign in to comment.