Skip to content

Commit

Permalink
Merge pull request #572 from Adamant-im/dev
Browse files Browse the repository at this point in the history
Release v4.4.0
  • Loading branch information
bludnic authored Dec 26, 2023
2 parents eda8de5 + 18e1c5d commit 20dbd18
Show file tree
Hide file tree
Showing 244 changed files with 7,175 additions and 4,863 deletions.
25 changes: 22 additions & 3 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,21 +1,26 @@
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution')

/** @type import('eslint').Linter.Config **/
module.exports = {
root: true,
env: {
browser: true,
node: true
node: true,
es2022: true
},
extends: [
'plugin:vue/vue3-essential',
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'@vue/eslint-config-prettier/skip-formatting'
'@vue/eslint-config-prettier/skip-formatting',
'plugin:import/recommended',
'plugin:import/typescript'
],
parser: 'vue-eslint-parser',
parserOptions: {
ecmaVersion: 13,
parser: {
// Script parser for `<script>`
js: 'espree',
Expand All @@ -29,8 +34,22 @@ module.exports = {
'<template>': 'espree'
}
},
ignorePatterns: ['src/components/icons/cryptos/*.vue'],
plugins: ['vue', '@typescript-eslint'],
rules: {
'@typescript-eslint/no-explicit-any': 'off'
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '_' }],
'vue/multi-word-component-names': 'off',

'import/no-unresolved': 'error',
'import/named': 'off',
'import/no-named-as-default': 'off',
'import/no-named-as-default-member': 'off'
},
settings: {
'import/resolver': {
typescript: true,
node: true
}
}
}
4 changes: 4 additions & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx --no -- commitlint --edit ${1}
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx lint-staged
3 changes: 3 additions & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
extends: ['@commitlint/config-conventional']
}
Loading

1 comment on commit 20dbd18

@vercel
Copy link

@vercel vercel bot commented on 20dbd18 Dec 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

adamant-im – ./

adamant-im-adamant-team.vercel.app
adamant-im-git-master-adamant-team.vercel.app
msg2.adamant.im

Please sign in to comment.