Skip to content

Commit

Permalink
Revert "Removed linting"
Browse files Browse the repository at this point in the history
This reverts commit 347c43a.
  • Loading branch information
micoloth committed Feb 27, 2024
1 parent 1198ce4 commit c0bbdae
Show file tree
Hide file tree
Showing 3 changed files with 962 additions and 4 deletions.
23 changes: 23 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/**@type {import('eslint').Linter.Config} */
// eslint-disable-next-line no-undef
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint',
],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
],
rules: {
'semi': [
2,
"always"
],
'@typescript-eslint/no-unused-vars': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/explicit-module-boundary-types': 0,
'@typescript-eslint/no-non-null-assertion': 0,
}
};
Loading

0 comments on commit c0bbdae

Please sign in to comment.