Skip to content

Commit

Permalink
v0.2.12 (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
AKurkina authored Mar 20, 2024
1 parent 46330af commit 2b5d038
Show file tree
Hide file tree
Showing 8 changed files with 1,768 additions and 233 deletions.
39 changes: 39 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
module.exports = {
env: {
node: true,
es2021: true
},
extends: [
'standard'
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 12,
sourceType: 'module'
},
plugins: [
'@typescript-eslint'
],
rules: {
'no-useless-escape': 'off',
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': ['error'],
'no-template-curly-in-string': 'off',
'no-tabs': 'off',
'no-mixed-spaces-and-tabs': 'off',
semi: ['error', 'always'],
'space-before-function-paren': ['error', 'never'],
'no-redeclare': 'warn',
'no-throw-literal': 'warn',
'no-unused-expressions': 'warn',
indent: ['error', 4],
'linebreak-style': ['error', 'unix'],
quotes: ['error', 'single'],
'no-empty': 'warn',
'no-cond-assign': ['error', 'always'],
'for-direction': 'off',
'newline-after-var': ['error', 'always'],
'object-curly-spacing': ['error', 'always']
}
};

4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 0.2.12

- Added support for possible localization

## 0.2.11

- Updated versions of 3rd party dependencies
Expand Down
Loading

0 comments on commit 2b5d038

Please sign in to comment.