Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
onlyutkarsh committed Sep 21, 2022
1 parent aa9f7af commit dea72ee
Show file tree
Hide file tree
Showing 10 changed files with 21,201 additions and 15,964 deletions.
72 changes: 20 additions & 52 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,53 +1,21 @@
module.exports = {
"env": {
"browser": true,
"es6": true,
"jest": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"prettier"
],
"rules": {
"prefer-template": "error",
"no-multiple-empty-lines": [
"error",
{
"max": 1
}
],
"no-console": "warn",
"no-unused-vars": [
"off"
],
"linebreak-style": [
"warn",
"windows"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
],
"curly": [
"error",
"all"
]
}
};
ignorePatterns: [ '**/*.d.ts', '**/*.test.ts', '**/*.js' ],
parser: '@typescript-eslint/parser',
extends: [ 'plugin:@typescript-eslint/recommended' ],
plugins: [],
parserOptions: {
ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features
sourceType: 'module' // Allows for the use of imports
},
rules: {
'@typescript-eslint/no-use-before-define': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/prefer-const': 'off',
'@typescript-eslint/no-empty-function': 'off',
"@typescript-eslint/no-unused-vars": 'warn'
// Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs
// e.g. "@typescript-eslint/explicit-function-return-type": "off",
}
};
44 changes: 44 additions & 0 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/npm",
{
"npmPublish": false,
"tarballDir": "dist"
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "*.vsix",
"label": "Git User Profiles"
}
]
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
Loading

0 comments on commit dea72ee

Please sign in to comment.