Skip to content

Commit

Permalink
Merge pull request #2 from Renna-Labs/v1.1.0
Browse files Browse the repository at this point in the history
v1.1.0
  • Loading branch information
echoghi authored Feb 2, 2023
2 parents 2aebbd0 + f4ed533 commit ba17b03
Show file tree
Hide file tree
Showing 38 changed files with 1,087 additions and 243 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# http://EditorConfig.org

# top-most EditorConfig file
root = true

# Global
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
10 changes: 8 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,22 @@ module.exports = {
},
},
rules: {
// eslint rules
'no-use-before-define': 'off',
'prefer-rest-params': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'no-param-reassign': 'off',
'no-void': 'off',
'consistent-return': 'off',
'no-restricted-syntax': 'off',
'arrow-body-style': 'off',
'no-console': 'off',
'no-undef': 'off',
'prefer-arrow-callback': 'off',
// react rules
'react/prop-types': 'off',
// typescript rules
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/no-empty-function': 'off',
},
};
Loading

0 comments on commit ba17b03

Please sign in to comment.